antichat

Simple forum.antichat.ru wrapper


Keywords
wrapper, scraper, antichat
License
MIT
Install
pip install antichat==0.0.7

Documentation

Python wrapper for https://forum.antichat.ru/

PyPI pyversions PyPI license PyPI - Downloads

Installation

pip install antichat

Or you can install from source with:

git clone https://github.com/drygdryg/antichat_python.git
cd antichat_python
python setup.py install

Usage

Posting

import antichat

client = antichat.Client(username='myusername', password='mypassword')
client.auth()

post_id = client.make_post(thread=12345, message='Hi there!')
client.delete_post(post_id=post_id, reason='No hello')

Reading threads

reader = client.get_reader(thread=12345)

all_posts = reader.read()   # Read all posts sequentially
first_posts = reader.read(limit=20)   # Get only first 20 posts
last_posts = reader.read(offset=400)   # Skip first 400 posts
posts = reader.read(start_post=6789)   # Read from post ID 6789

page = reader.read_page(page=5)   # Read page #5