Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2021
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import requests
  2. true = 1
  3. PROXYREADLINE = 1
  4. while true:
  5. try:
  6. vote()
  7. except:
  8. print(Exception)
  9.  
  10. def vote():
  11. proxy = open('proxies.txt').read().split('\n')[PROXYREADLINE]
  12. PROXYREADLINE = PROXYREADLINE + 1
  13. proxies = {
  14. "https": proxy,
  15. }
  16. requests.post('https://woobox.com/2wnuc6/vote/add', {'id':'48249115', 'signed_request':'false'}, proxies = proxies)
  17. test()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement