okeansushi.py 495 B

12345678910111213141516171819
  1. from db0mb3r.services.service import Service
  2. class OkeanSushi(Service):
  3. phone_codes = [7]
  4. async def run(self):
  5. await self.get(
  6. "https://okeansushi.ru/includes/contact.php",
  7. params={
  8. "call_mail": "1",
  9. "ajax": "1",
  10. "name": self.russian_name,
  11. "phone": self.format(self.phone, "8 (***) ***-**-**"),
  12. "call_time": "1",
  13. "pravila2": "on",
  14. },
  15. )