def fetch (url): r = yield from aiohttp.request ('GET', url) print ('%s %s' % (r.status, r.reason), end = " ") return (yield from r.read ())