delimobil.py 328 B

12345678910111213
  1. from db0mb3r.services.service import Service
  2. class DeliMobil(Service):
  3. async def run(self):
  4. await self.post(
  5. "https://api.delitime.ru/api/v2/signup",
  6. data={
  7. "SignupForm[username]": self.formatted_phone,
  8. "SignupForm[device_type]": 3,
  9. },
  10. )