1234567891011121314 |
- from db0mb3r.services.service import Service
- class IQLab(Service):
- phone_codes = [380]
- async def run(self):
- await self.post(
- "https://iqlab.com.ua/session/ajaxregister",
- data={
- "cellphone": self.format(self.formatted_phone, "+** (***) *** ** **"),
- },
- )
|