pizzahut.py 313 B

123456789
  1. from db0mb3r.services.service import Service
  2. class Pizzahut(Service):
  3. async def run(self):
  4. await self.post(
  5. "https://pizzahut.ru/account/password-reset",
  6. data={"reset_by": "phone", "action_id": "pass-recovery", "phone": self.formatted_phone, "_token": "*"},
  7. )