import asyncio import aiohttp url = 'http://httpbin.org/headers' @asyncio.coroutine def get_page(): resp = yield from aiohttp.ClientSession().get(url) text ...
確定! 回上一頁