Advertisement
Guest User

ddd

a guest
Jun 22nd, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. import requests
  2. filereadline = 1
  3. while True:
  4. try:
  5. proxy = open('proxies.txt').read().split('\n')[filereadline]
  6. filereadline = (filereadline + 1)
  7. proxies = {
  8. 'https': proxy,
  9. 'http': proxy,
  10. }
  11. req = requests.post('https://woobox.com/2wnuc6/vote/add', {'id':'48249115', 'signed_request':'false'}, proxies = proxies)
  12. print(req)
  13. except: print('Ошибка. Вероятно не отвечает прокси сервер.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement