Metadata-Version: 2.1
Name: pyrule34test
Version: 2.0.0
Summary: Asynchronous wrapper for rule34.xxx.
Home-page: https://github.com/Hypick122/pyrule34
License: MIT
Keywords: async rule34,rule34 api,async,asyncio,wrapper,api
Author: Hypick122
Requires-Python: >=3.8,<4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Typing :: Typed
Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
Requires-Dist: beautifulsoup4 (>=4.12.2,<5.0.0)
Requires-Dist: lxml (>=4.9.3,<5.0.0)
Project-URL: Bug Tracker, https://github.com/Hypick122/pyrule34/issues
Project-URL: Documentation, https://github.com/Hypick122/pyrule34/README.md
Project-URL: Repository, https://github.com/Hypick122/pyrule34
Description-Content-Type: text/markdown

<div align="center">
  <h1>PyRule34</h1>
  
  **This is a lightweight asynchronous library for the <a href="https://rule34.xxx">rule34</a> API**
  
  <p><strong>
      English
      ·
      <a href="/.github/README_RU.md">Русский</a>
    </strong></p>
    
  <!--https://img.shields.io/badge/License-GPL_3.0-<COLOR>.svg?style=for-the-badge-->
  <a>[![GitHub - License](https://img.shields.io/github/license/Hypick122/pyrule34.svg?style=for-the-badge&color=light-green)](https://github.com/Hypick122/pyrule34/blob/master/LICENSE)</a>
  <br>
  <a>[![PyPI - Version](https://img.shields.io/pypi/v/pyrule34?color=blue&style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/pyrule34)</a>
  <a>[![PyPI - Downloads](https://img.shields.io/pypi/dm/pyrule34?style=for-the-badge&color=blue)](https://pepy.tech/project/pyrule34)</a>
  <br>
  <a>[![Python - Version](https://img.shields.io/badge/PYTHON-3.5+-red?style=for-the-badge&logo=python&logoColor=white)](https://pepy.tech/project/pyrule34)</a>
  <!--[![PyPI status](https://img.shields.io/pypi/status/pyrule34.svg?style=for-the-badge)](https://pypi.python.org/pypi/pyrule34)-->
  <!--https://img.shields.io/pypi/pyversions/pyrule34.svg?style=for-the-badge-->
</div>

## Table of Contents

- [Getting Started](#getting-started)
  - [Install using PyPI](#install-using-pypi)
  - [Clone the repository](#clone-the-repository)
- [Usage](#usage)
  - [Search](#search)
  - [Get post](#get-post)
  - [Comments on the post](#comments-on-the-post)
  - [Random post](#random-post)
  - [Pool](#pool)
  - [User Favorites](#user-favorites)
  - [Top 100 characters and tags](#top-100-characters-and-tags)
  - [Top users](#top-users)

## Getting Started

##### Install using PyPI

```
pip install -U pyrule34
```

or

##### Clone the repository

```
git clone https://github.com/Hypick122/pyrule34.git
```

2. Install the required Python packages:

```
pip install -U aiohttp, beautifulsoup4, lxml
```

3. Create a .py file and import the required libraries:

```python
import asyncio
from pyrule34 import AsyncRule34
```

## Usage

```
AsyncRule34 can be used as a context manager:
```python
#example
async def main():
    async with AsyncRule34() as r34:
        get_posts = await r34.get_posts(4931536)
        
        print(get_posts[0].tags)
        
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
```

### Search

Search for posts using specified inclusion and exclusion tags.

Returns a list.

Parameters:
- `tags` - The include tags
- `exclude_tags` - The exclude tags (default: None)
- `limit` - The (maximum) limit to get posts. Maximum 1000 per one request (default: 100)
- `page_id` - The page number (default: 0)
```python
search = await r34.search(tags=["neko"], exclude_tags=["rating:general"], page_id=2, limit=1)
```

### Get post

Retrieve post(s) by ID or MD5 hash.

Returns a list.

Parameters:
- `posts_id`: The list of IDs posts or post ID
- `md5`: The MD5 hash of the post (default: None)
```python
get_posts = await r34.get_posts(4931536)
```

### Comments on the post

Get comments by post ID.

Returns a list.

Parameters:
- `post_id`: The ID of the post
```python
get_post_comments = await r34.get_post_comments(4153825)
```

### Random post

Get a random post.

Returns a dict.
```python
get_random_post = await r34.get_random_post()
```

### Pool

Get Pool by ID.

Returns a list.

Parameters:
- `cid`: Pool ID
- `offset`: offset (default: 0) | 1 page - 45
```python
get_pool = await r34.get_pool(29619)
```

### User favorites

Get user's favorites by ID.

Returns a list.

Parameters:
- `user_id`: user ID
- `offset`: offset (default: 0) | 1 page - 50
```python
favorite = await r34.users.favorites(2993217)
```

### Top 100 characters and tags

Get the top 100 characters or tags.

Returns a list.
```python
top_character = await r34.top_characters()
top_tags = await r34.top_tags()
```

### Top users

Get the top 10 best users by tags, comments, etc.

Returns a list.
```python
taggers = await r34.stats.taggers()
favorites = await r34.stats.favorites()
commenters = await r34.stats.commenters()
forum_posters = await r34.stats.forum_posters()
image_posters = await r34.stats.image_posters()
note_editors = await r34.stats.note_editors()
```

