smartspace.py 291 B

12345678910
  1. from db0mb3r.services.service import Service
  2. class SmartSpace(Service):
  3. async def run(self):
  4. await self.post(
  5. "https://smart.space/api/users/request_confirmation_code/",
  6. json={"mobile": "+" + self.formatted_phone, "action": "confirm_mobile"},
  7. )