PGram


NamePGram JSON
Version 0.0.7 PyPI version JSON
download
home_pageNone
SummaryBlazingly fast start async telegram bot on top of the aiogram with postgres channels
upload_time2025-10-07 10:17:12
maintainerNone
docs_urlNone
authorNone
requires_python>=3.12
licenseMIT
keywords aiogram xync-net postgres channels signals
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PGram

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

### Minimal code for running
```python
### router.py
from aiogram import Router

r = Router()

@r.message()
async def del_msg(msg):
    await msg.delete()
```

```python
### main.py
from asyncio import run
from PGram import Bot
from router import r

bot = Bot("bot:token", [r])
run(bot.start())
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "PGram",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.12",
    "maintainer_email": null,
    "keywords": "aiogram, xync-net, postgres, channels, signals",
    "author": null,
    "author_email": "XyncNet <code@xync.net>",
    "download_url": "https://files.pythonhosted.org/packages/cf/8b/b95ea53326828b214a8e13cf52bfe85f50707b552544c5df571c42560ebd/pgram-0.0.7.tar.gz",
    "platform": null,
    "description": "# PGram\n\n### Install\n```sh\npip install PGram\n```\n\n### Minimal code for running\n```python\n### router.py\nfrom aiogram import Router\n\nr = Router()\n\n@r.message()\nasync def del_msg(msg):\n    await msg.delete()\n```\n\n```python\n### main.py\nfrom asyncio import run\nfrom PGram import Bot\nfrom router import r\n\nbot = Bot(\"bot:token\", [r])\nrun(bot.start())\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Blazingly fast start async telegram bot on top of the aiogram with postgres channels",
    "version": "0.0.7",
    "project_urls": {
        "Homepage": "https://github.com/XyncNet/PGram",
        "Repository": "https://github.com/XyncNet/PGram"
    },
    "split_keywords": [
        "aiogram",
        " xync-net",
        " postgres",
        " channels",
        " signals"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f8c256dea5defcb25ca263026c92d10a22fcbd4c0d0e1a0e59a23b17c9b0a06",
                "md5": "14d26fe690e1d840ac96a2875109e98c",
                "sha256": "882ee85108abb919854743433970fab614584a1139e2ecf9d24be29dddb93747"
            },
            "downloads": -1,
            "filename": "pgram-0.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "14d26fe690e1d840ac96a2875109e98c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.12",
            "size": 2753,
            "upload_time": "2025-10-07T10:17:11",
            "upload_time_iso_8601": "2025-10-07T10:17:11.027410Z",
            "url": "https://files.pythonhosted.org/packages/5f/8c/256dea5defcb25ca263026c92d10a22fcbd4c0d0e1a0e59a23b17c9b0a06/pgram-0.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf8bb95ea53326828b214a8e13cf52bfe85f50707b552544c5df571c42560ebd",
                "md5": "195d774a5e337769ad6a8e8add84787c",
                "sha256": "a10dae045a31870bf639b2005af3b3ac2df360d2612e8a2ae12a66c7a24e7478"
            },
            "downloads": -1,
            "filename": "pgram-0.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "195d774a5e337769ad6a8e8add84787c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.12",
            "size": 4559,
            "upload_time": "2025-10-07T10:17:12",
            "upload_time_iso_8601": "2025-10-07T10:17:12.279440Z",
            "url": "https://files.pythonhosted.org/packages/cf/8b/b95ea53326828b214a8e13cf52bfe85f50707b552544c5df571c42560ebd/pgram-0.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-07 10:17:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "XyncNet",
    "github_project": "PGram",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pgram"
}
        
Elapsed time: 1.73117s