Advertisement
kohpriwniranam

getnum

Sep 10th, 2023
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.28 KB | None | 0 0
  1.                     elif msg.text.lower().startswith("getnum:"):
  2.                         if msg._from in creator:
  3.                             group = client.getChats(to);chat = group.extra.groupExtra if msg.toType == 2 else None
  4.                             if not group:return
  5.                             from SmsActivationv2 import SmsActivation
  6.                             sep = text.split(":")
  7.                             text = text.replace(sep[0] + ":","")
  8.                             api = SmsActivation()
  9.                             idPhone, phoneNumber = api.getPhone(text)
  10.                             if idPhone and phoneNumber:
  11.                                 print(f"idPhone: {idPhone}")
  12.                                 print(f"PhoneNumber: {phoneNumber}")
  13.                                 tx = f"idPhone: {idPhone}"+"\n"
  14.                                 tx += f"PhoneNumber: {phoneNumber}"+""
  15.                                 try:client.sendMessage(to, tx)
  16.                                 except Exception as e:client.sendMessage(to, str(e))
  17.                                 pin = api.waitingCode(idPhone)
  18.                                 if pin == False:client.sendMessage(to, "time out!!")
  19.                                 else:print(pin);client.sendMessage(to,"OtpCode : " + str(pin))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement