Last active
May 16, 2017 00:10
-
-
Save thelastpenguin/a14c48180f733096a22df5e07a15730e to your computer and use it in GitHub Desktop.
A little python script for web scraping sites in parallel
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
import aiohttp | |
import asyncio | |
async def fetch(session, url): | |
with aiohttp.Timeout(10): | |
async with session.get(url) as response: | |
return await response.text() | |
async def fetch_all(session, urls, loop): | |
results = await asyncio.gather( | |
*[fetch(session, url) for url in urls], | |
return_exceptions=True # default is false, that would raise | |
) | |
# for testing purposes only | |
# gather returns results in the order of coros | |
for idx, url in enumerate(urls): | |
print('{}: {}'.format(url, 'ERR' if isinstance(results[idx], Exception) else 'OK')) | |
return results | |
def download_urls(urls): # returns a dictionary mapping a url -> result text | |
loop = asyncio.get_event_loop() | |
urls = [ | |
'http://google.com', | |
'http://twitter.com'] | |
with aiohttp.ClientSession(loop=loop) as session: | |
the_results = loop.run_until_complete( | |
fetch_all(session, urls, loop)) | |
return the_results |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment