pozichka.py 391 B

12345678910111213141516
  1. from db0mb3r.services.service import Service
  2. class Pozichka(Service):
  3. phone_codes = [380]
  4. async def run(self):
  5. await self.post(
  6. "https://api.pozichka.ua/v1/registration/send",
  7. json={
  8. "RegisterSendForm": {
  9. "phone": self.format(self.formatted_phone, "+**-***-***-**-**")
  10. }
  11. },
  12. )