pizzasushiwok.py 445 B

1234567891011121314151617
  1. from db0mb3r.services.service import Service
  2. class PizzaSushiWok(Service):
  3. phone_codes = [7]
  4. async def run(self):
  5. await self.post(
  6. "https://pizzasushiwok.ru/index.php",
  7. data={
  8. "mod_name": "call_me",
  9. "task": "request_call",
  10. "name": self.russian_name,
  11. "phone": self.format(self.formatted_phone, "8-***-***-**-**"),
  12. },
  13. )