Metadata-Version: 2.4
Name: hasnainkk-07
Version: 1.0
Summary: An enhanced Pyrogram-like filter and handler system using Kurigram.
Home-page: https://github.com/Endtrz/hasnainkk
Author: Endtrz
Author-email: endtrz@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: kurigram>=2.2.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# hasnainkk

An enhanced Pyrogram-like filter and handler system built on Kurigram.

## Installation

```bash
pip install hasnainkk

```
### How to use it

```python
from hasnainkk.client import Client
from hasnainkk.handler import handler
from hasnainkk.filters import command, group

client = Client("mybot", api_id=12345, api_hash="xyz", bot_token="TOKEN")

@handler("start")
async def start(client, message):
    await message.reply_text("Hello!")

client.run()
