Skip to main content

Simple asyncio wrapper to download hackernews

Project description

asyncio-hn
==========

A simple asyncio wrapper to download
`hacker-news <https://news.ycombinator.com/>`__ with speed and ease.

The package supports all endpoints of the official API : `hacker-news
API <https://github.com/HackerNews/API>`__

Installation
------------

.. code:: shell

pip install asyncio-hn

Usage
-----

.. code:: python

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 data
top_posts = await hn.items(hn_new_stories[:10])
# Download the user data for each story
users = await hn.users([post.get("by") for post in top_posts])


if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))

Advance usage
~~~~~~~~~~~~~

Using this config you can reach 1000+ request/sec.

.. code:: python
import aiohttp
from asyncio_hn import ClientHN

N = 1_000_000

async def advance_run(loop):
# We init the client - extension of aiohttp.ClientSession
conn = aiohttp.TCPConnector(limit=1000, loop=loop)
async with ClientHN(loop=loop, queue_size=1000, connector=conn, progress_bar=True, debug=True) as hn:
# Download the last 1,000,000 stories
hn_new_stories = await hn.last_n_items(n=N)

Output example:
---------------

Item:

.. code:: python

item = {'by': 'amzans', 'descendants': 25, 'id': 13566716,
'kids': [13567061, 13567631, 13567027, 13567055, 13566798, 13567473], 'score': 171, 'time': 1486210548,
'title': 'Network programming with Go (2012)', 'type': 'story',
'url': 'https://jannewmarch.gitbooks.io/network-programming-with-go-golang-/content/'},
{'by': 'r3bl', 'descendants': 1, 'id': 13567940, 'kids': [13568249], 'score': 24, 'time': 1486230224,
'title': 'YouTube removes hundreds of the best climate science videos from the Internet',
'type': 'story',
'url': 'http://climatestate.com/2017/02/03/youtube-removes-hundreds-of-the-best-climate-science-videos-from-the-internet/'}

User:

.. code:: python

user = {'created': 1470758993, 'id': 'amzans', 'karma': 174,
'submitted': [13567884, 13566716, 13566699, 13558456, 13539270, 13539151, 13514498, 13418469, 13417725,
13416562, 13416097, 13416034, 13415954, 13415894, 13395310, 13394996, 13392554, 12418804,
12418361, 12413958, 12411992, 12411732, 12411546, 12262383, 12255593]}


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncio_hn-0.4.0.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file asyncio_hn-0.4.0.tar.gz.

File metadata

  • Download URL: asyncio_hn-0.4.0.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for asyncio_hn-0.4.0.tar.gz
Algorithm Hash digest
SHA256 6e34cef66c1dcc20a8abbe0253f6c5a75e871eb96a5d098c29562edf0958a9a0
MD5 75da60e4e063558dd18c5a416ded189d
BLAKE2b-256 92be8a92363886ce4c23ddccce7fed152ceffa1ab5cd72c71ee99c52af2ca608

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page