Skip to content

Instantly share code, notes, and snippets.

View muxuezi's full-sized avatar
⛹️‍♂️
basketball

Todd Tao muxuezi

⛹️‍♂️
basketball
View GitHub Profile
@muxuezi
muxuezi / PythonLogo.ipynb
Created May 13, 2017 09:31 — forked from jakevdp/PythonLogo.ipynb
Creating the Python Logo in Matplotlib
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import asyncio
import aiohttp
import bs4
import tqdm
@asyncio.coroutine
def get(*args, **kwargs):
response = yield from aiohttp.request('GET', *args, **kwargs)
return (yield from response.read_and_close(decode=True))