-
-
Save nguaman/21c10e11728ec74d44981ab34b097136 to your computer and use it in GitHub Desktop.
Python parallel http requests using multiprocessing
This file contains hidden or 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
#!/usr/bin/env python | |
from multiprocessing import Process, Pool | |
import time | |
import urllib2 | |
def millis(): | |
return int(round(time.time() * 1000)) | |
def http_get(url): | |
start_time = millis() | |
result = {"url": url, "data": urllib2.urlopen(url, timeout=5).read()[:100]} | |
print url + " took " + str(millis() - start_time) + " ms" | |
return result | |
urls = ['http://www.google.com/', 'https://foursquare.com/', 'http://www.yahoo.com/', 'http://www.bing.com/', "https://www.yelp.com/"] | |
pool = Pool(processes=5) | |
start_time = millis() | |
results = pool.map(http_get, urls) | |
print "\nTotal took " + str(millis() - start_time) + " ms\n" | |
for result in results: | |
print result | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment