Advertisement
Guest User

Untitled

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. user1
  2. user2
  3.  
  4. URL GOTO=https://www.url.com/example
  5. TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
  6. WAIT SECONDS= 27
  7.  
  8. URL GOTO=https://www.url.com/example
  9. TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
  10. WAIT SECONDS= 30
  11.  
  12. with open('users.txt') as f1, open('code.txt') as f2:
  13. url_info = f2.read().split('nn')
  14. users = f1.read().split('n')
  15. zipped_list = zip(users, url_info)
  16. for item in zipped_list:
  17. print(item[1].replace('example', item[0])+"n")
  18.  
  19. URL GOTO=https://www.url.com/user1
  20. TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
  21. WAIT SECONDS= 27
  22.  
  23. URL GOTO=https://www.url.com/user2
  24. TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
  25. WAIT SECONDS= 27
  26.  
  27. URL GOTO=https://www.url.com/Userexample
  28. TAG POS=1 TYPE=BUTTON ATTR=TXT:Follow
  29. WAIT SECONDS= 27
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement