sportmasterua.py 362 B

12345678910111213141516
  1. from db0mb3r.services.service import Service
  2. class SportmasterUA(Service):
  3. phone_codes = [380]
  4. async def run(self):
  5. await self.get(
  6. "https://www.sportmaster.ua/",
  7. params={
  8. "module": "users",
  9. "action": "SendSMSReg",
  10. "phone": self.formatted_phone,
  11. },
  12. )