Metadata-Version: 2.4
Name: PGram
Version: 0.0.2
Summary: Blazingly fast start async telegram bot on top of the aiogram and tortoise-orm with postgres channels
Author-email: XyncNet <code@xync.net>
License: MIT
Project-URL: Homepage, https://github.com/XyncNet/PGram
Project-URL: Repository, https://github.com/XyncNet/PGram
Keywords: aiogram,xync-net,postgres,channels,signals
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: aiogram
Requires-Dist: asyncpg
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: python-dotenv; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: setuptools-scm[toml]; extra == "dev"
Requires-Dist: twine; extra == "dev"

# PGram
###### Blazingly fast start async telegram bot on top of the aiogram and tortoise-orm with postgres channels

### Install
```sh
pip install PGram
```

### Minimal code for running
```python
from asyncio import run
from PGram import Bot

bot = Bot("bot:token")
run(bot.start())
```
