我正在尝试异步加载网页内容。我使用过requests_html,因为我在服务器上安装它时遇到一些问题所以我使用asyncio
@asyncio.coroutine
async def extract_feature():
try:
count = 0
key = ''
loop = asyncio.get_event_loop()
response = await loop.run_in_executor(None, requests.get, link)
soup = BeautifulSoup(response, "html.parser")
return soup
loop = asyncio.get_event_loop()
result = loop.run_until_complete(extract_feature)
但这会引发A Future 或 coroutine is required。
要提到的一件事是我使用的是不支持运行的Python 3.5.0 (v3.5.0:374f501f4567) 。
狐的传说
相关分类