xample

ROBLOX USER:PASS FORMAT

Sep 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # Python 2.7.15
  2. # You need users.txt, pwds.txt where this file is at otherwise won't find it
  3. # if you've got it somewhere else you can change the path
  4. # ~~ xampleBACKUP ~~
  5. #Enjoy.
  6. import time
  7. try:
  8.  
  9. var = open("users.txt", 'r').readlines()
  10. var2 = open("pwds.txt", 'r').readlines()
  11. except:
  12. print ("Folders Were not Found!")
  13. time.sleep(3)
  14. raise SystemExit("Folders were not found!")
  15.  
  16. def output_func():
  17. try:
  18.  
  19. with open("results.txt", "w") as out:
  20. for row,row2 in zip(var,var2):
  21. out.write(row.strip() + ":"+row2+"\n")
  22. print ("Proccess Done!")
  23. time.sleep(5)
  24. raise SystemExit()
  25. except FileError:
  26. print "ERROR!"
  27. time.sleep(3)
  28. raise SystemExit("ER")
  29. output_func()
Add Comment
Please, Sign In to add comment