(本教程基于此 this pastebin 文档编写, 并且适合于 Yosemite 正式版)
(免责声明: 本教程旨在说明如何在 VirtualBox 中运行 Mac OS X 操作系统, 并且本系统仅供测试使用.)
| future==0.16.0 | |
| requests==2.11.1 | |
| rsa==3.4.2 |
| 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)) |
(本教程基于此 this pastebin 文档编写, 并且适合于 Yosemite 正式版)
(免责声明: 本教程旨在说明如何在 VirtualBox 中运行 Mac OS X 操作系统, 并且本系统仅供测试使用.)