Skip to main content

Fully asynchronous API wrapper for 2ch.hk (dvach)

Project description

Fully asynchronous API wrapper for 2ch.hk (dvach, Двач)

Requirements

  • Python 3.5+

Install with pip

$ pip3 install aio2ch

Build from source

$ git clone https://github.com/wkpn/aio2ch
$ cd ./aio2ch
$ python3 setup.py install

Usage

>>> from aio2ch.api import Api
>>> api = Api()

Get all boards

>>> status, boards = await api.get_boards()

>>> boards
[<Board name: Фагготрия, id: fag>, ... ]

Get all threads from a board

>>> status, threads = await api.get_board_threads(board='b')

>>> threads
[<Thread 180981319>, ... ]

Get top threads from a board sorted by method (views, score or posts_count)

>>> status, top_threads = await api.get_top_board_threads(board='b', method='views', num=3)

>>> top_threads
[<Thread 180894312>, <Thread 180946622>, <Thread 180963318>]

Get all thread’s posts (thread is instance of Thread)

>>> status, thread_posts = await api.get_thread_posts(thread=thread)

>>> thread_posts
[<Post 180894312>, ... ]

Get all media in all thread’s posts (images, webm etc.)

>>> status, thread_media = await api.get_thread_media(thread=thread)

>>> thread_media
[<File name:15336559148500.jpg, path:/b/src/180979032/15336559148500.jpg, size:19>, ... ]

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

aio2ch-1.4.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

aio2ch-1.4-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

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