/rule34Py

API wraper for rule34.xxx | https://pypi.org/project/rule34Py/

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

rule34Py Downloads

This is a Simple rule34.xxx API wraper.
Read the Documentation

Whats new?

I've rewritten and cleaned the code up. My goal is to ceep the code as clean as posible. I've also added new Object types, such as the "Post" Object. The new Versions (above 1.4.0) is not competible with older versions, do to masive changes.
You can finde the Changelog here.

Ideas

  • User search
    • Get user by its id (or maybe username)

Feel free to submit ideas

Installation

pip install rule34Py

Documentation

New Documentation for current version
Old Documentation (for version 1.3.38 and below!)

Code Snippet

from rule34Py import rule34Py

r34Py = rule34Py()

print(r34Py.version)

result_comments = r34Py.get_comments(4153825)
result_post = r34Py.get_post(4931536)
result_icame = r34Py.icame()
result_search = r34Py.search(["neko"], page_id=2, limit=50)
result_pool = r34Py.get_pool(17509) # or r34Py.get_pool(17509, false)
result_random = r34Py.random_post(["neko"]) # or r34Py.random_post()
result_tagmap = r34Py.tagmap()

# Stats
result_topTaggers = r34Py.stats.top_taggers()
result_topCommenters = r34Py.stats.top_commenters()
result_topForumPosters = r34Py.stats.top_forum_posters()
result_topImagePosters = r34Py.stats.top_image_posters()
result_topNoteEditors = r34Py.stats.top_note_editors()
result_topFavorites = r34Py.stats.top_favorites()

print(result_random.id)
print(result_random.image)

print(result_icame[0].character_name) # returns the character name of the first item

print(result_tagmap[0].tagname)