cian.py 276 B

12345678910
  1. from db0mb3r.services.service import Service
  2. class Cian(Service):
  3. async def run(self):
  4. await self.post(
  5. "https://api.cian.ru/sms/v1/send-validation-code/",
  6. json={"phone": "+" + self.formatted_phone, "type": "authenticateCode"},
  7. )