Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. import requests
  2.  
  3. proxies = open('proxies.txt','r')
  4.  
  5. url = input('url')
  6.  
  7. for i in proxies:
  8.     print (i)
  9.     r = requests.get(url,proxies={'http':'http://{}'.format(i)})
  10.     print ('page visited')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement