文件名称:asyncio-hn:适用于HackerNews API的Python(Asyncio)包装器
文件大小:10KB
文件格式:ZIP
更新时间:2024-05-23 09:11:49
python api hacker-news scraping asyncio
异步 一个简单的异步包装器,可快速轻松地下载。 该软件包支持官方API的所有端点: 开发过程: 安装 pip install asyncio-hn 用法 import asyncio from asyncio_hn import ClientHN async def main ( loop ): # We init the client - extension of aiohttp.ClientSession async with ClientHN ( loop = loop ) as hn : # Up to 500 top and top stories (only ids) hn_new_stories = await hn . top_stories () # Download top 10 story dat
【文件预览】:
asyncio-hn-master
----setup.py(1KB)
----.gitignore(800B)
----asyncio_hn()
--------__init__.py(60B)
--------hn.py(5KB)
----requirements.txt(20B)
----MANIFEST.in(54B)
----LICENSE(1KB)
----examples()
--------basic_example.py(590B)
--------advance_example.py(655B)
--------__init__.py(0B)
----README.md(3KB)
----tests()
--------test_asyncio_hn.py(1KB)
--------__init__.py(24B)
----test_requirements.txt(158B)
----README(3KB)
----.editorconfig(292B)