sushigourmet.py 288 B

123456789101112
  1. from db0mb3r.services.service import Service
  2. class SushiGourmet(Service):
  3. phone_codes = [7]
  4. async def run(self):
  5. await self.post(
  6. "http://sushigourmet.ru/auth",
  7. data={"phone": self.format(self.phone, "8 (***) ***-**-**"), "stage": 1},
  8. )