Created
October 18, 2018 05:26
-
-
Save tongtie/9b30ec28c06d3eb966d85965b31a2b35 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from urlparse import urlparse | |
from threading import Thread | |
import httplib, sys | |
from Queue import Queue | |
concurrent = 200 | |
def doWork(): | |
while True: | |
url = q.get() | |
status, url = getStatus(url) | |
doSomethingWithResult(status, url) | |
q.task_done() | |
def getStatus(ourl): | |
try: | |
url = urlparse(ourl) | |
conn = httplib.HTTPConnection(url.netloc) | |
conn.request("HEAD", url.path) | |
res = conn.getresponse() | |
return res.status, ourl | |
except: | |
return "error", ourl | |
def doSomethingWithResult(status, url): | |
print status, url | |
q = Queue(concurrent * 2) | |
for i in range(concurrent): | |
t = Thread(target=doWork) | |
t.daemon = True | |
t.start() | |
try: | |
for url in open('urllist.txt'): | |
q.put(url.strip()) | |
q.join() | |
except KeyboardInterrupt: | |
sys.exit(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment