Advertisement
6g7r

Ch Users SnapChat

Mar 9th, 2022
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.19 KB | None | 0 0
  1. import requests,threading,random
  2. from threading import Thread
  3. print("""
  4. [?] By 6g7r
  5. [?] insta 6g7r_here2
  6. [?] PW Team
  7. [?] Discord > https://discord.gg/tAd6MbQMfV
  8.  
  9. """)
  10. ff =input("file_uesr: ")
  11. th=int(input('thread:'))
  12. attempt=0
  13. try:
  14.   file=open(ff).read().splitlines()
  15.  
  16. except :
  17.   print("Make sure you type the file name correctly and add .txt")
  18.   input("Enter for Exit")
  19. print(f"""\r
  20. [?] attempt ()
  21. [!] Taken (  )
  22. [+]  Valid (  )
  23. """,end="")
  24.  
  25.  
  26. def Ch_Snap():
  27.   global attempt
  28.  
  29.   while 1:
  30.     users = str(random.choice(file))
  31.  
  32.  
  33.    
  34.    
  35.     req=requests.get(f"https://vodka-apis.herokuapp.com/SnapChat/Check/?user={users}").text
  36.  
  37.     if 'Taken User'in req:
  38.       attempt +=1
  39.       print(f"""\r
  40. [?] attempt ({attempt})
  41. [!] Taken ( {users} )
  42. [+]  Valid (  )
  43.  
  44.  
  45. """,end="")
  46.      
  47.     else:
  48.       attempt +=1
  49.       print(f"""\r
  50. [?] attempt ({attempt})
  51. [!] Taken (  )
  52. [+]  Valid ( {users})
  53. """,end="")
  54.       with open("valid.txt", "a") as mix:
  55.         mix.write(f"{users}\n")
  56.         mix.close()
  57.  
  58.      
  59. Threads = []
  60. for t in range(th):
  61.     x = threading.Thread(target=Ch_Snap)
  62.     x.start()
  63.     Threads.append(x)
  64.  
  65. for Th in Threads:
  66.     Th.join()
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement