ontaxi.py 410 B

1234567891011121314
  1. from db0mb3r.services.service import Service
  2. class OnTaxi(Service):
  3. async def run(self):
  4. if self.country_code in self.country_codes:
  5. await self.post(
  6. "https://ontaxi.com.ua/api/v2/web/client",
  7. json={
  8. "country": self.country_codes[self.country_code].upper(),
  9. "phone": self.phone,
  10. },
  11. )