Advertisement
biznesman

Untitled

Dec 29th, 2020
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. counter = 0
  2. cnt = 0
  3. with open('wot.txt', 'r') as fh:
  4. with open('Take_It_Easy.txt', 'w') as fh2:
  5. data = fh.read()
  6. lines = data.splitlines()
  7. for line in lines:
  8.  
  9.  
  10. #login = line.split(";")[1].split(":")[0]#.split(":")
  11. #password = line.split(";")[1].split(":")[1]
  12.  
  13. login = line.split(":")[0]#.split(":")
  14. password = line.split(":")[1]
  15.  
  16. data = ""
  17.  
  18. email = "https://generator.email/{}".format(login)
  19. #email = "aol.com"
  20.  
  21. data += "Данные от Amazon и почта:<br>логин: {}<br>пароль: {}<br>адрес почты: {}".format(login, password, email)
  22. data += "\n"
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. #twitch = line.split(";")[0].split(":")
  33. #amazon = line.split(";")[1].split(":")
  34.  
  35. #data = ""
  36. #data += "Prime Games World of Tanks: Starlight<br><br>"
  37. #email = "mail.ru"
  38. #data += "Данные от Amazon и почты:<br>логин: {}<br>пароль: {}<br>адрес почты: https://{}".format(amazon[0], amazon[1], email)
  39. #data += "\n"
  40.  
  41. #data = ""
  42. #data += "логин: %s<br>" % line.split(":")[0].split(";")[0]
  43. #data += "пароль: %s" % line.split(":")[1].split(";")[0]
  44. #data += "\n"
  45. fh2.write(data)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement