pyrotgfork


Namepyrotgfork JSON
Version 2.2.13 PyPI version JSON
download
home_pageNone
SummaryFork of Pyrogram. Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2025-07-10 05:51:09
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords telegram chat messenger mtproto api client library python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="https://github.com/TelegramPlayground/pyrogram">
        <img src="https://raw.githubusercontent.com/pyrogram/artwork/master/artwork/pyrogram-logo.png" alt="Pyrogram" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://telegramplayground.github.io/pyrogram/">
        Documentation
    </a>
    •
    <a href="https://telegramplayground.github.io/pyrogram/releases/changes-in-this-fork.html">
        Releases
    </a>
    •
    <a href="https://PyroTGFork.t.me/2">
        News
    </a>
</p>

## Pyrogram

> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots

``` python
from pyrogram import Client, filters

app = Client("my_account")


@app.on_message(filters.private)
async def hello(client, message):
    await message.reply("Hello from Pyrogram!")


app.run()
```

**Pyrogram** is a modern, elegant and asynchronous [MTProto API](https://telegramplayground.github.io/pyrogram/topics/mtproto-vs-botapi)
framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot
identity (bot API alternative) using Python.

### Key Features

- **Ready**: Install Pyrogram with pip and start building your applications right away.
- **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages.
- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.
- **Fast**: Boosted up by [TgCrypto](https://github.com/TelegramPlayGround/pyrogram-tgcrypto), a high-performance cryptography library written in C.  
- **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support.
- **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience).
- **Powerful**: Full access to Telegram's API to execute any official client action and more.

### Installing

``` bash
pip3 install pyrotgfork
```

### Resources

- Check out [the docs](https://telegramplayground.github.io/pyrogram) to learn more about Pyrogram, get started right
away and discover more in-depth material for building your client applications.
- Join the official channel at [PyroTGFork](https://PyroTGFork.t.me/2) and stay tuned for news, updates and announcements.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyrotgfork",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": null,
    "author_email": "SpEcHIDe <pyrogram@iamidiotareyoutoo.com>",
    "download_url": "https://files.pythonhosted.org/packages/97/2b/f6ed79a08a0855ab5cbe6629f8a5312761105f2226b4b497142a87fbcfd6/pyrotgfork-2.2.13.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/TelegramPlayground/pyrogram\">\n        <img src=\"https://raw.githubusercontent.com/pyrogram/artwork/master/artwork/pyrogram-logo.png\" alt=\"Pyrogram\" width=\"128\">\n    </a>\n    <br>\n    <b>Telegram MTProto API Framework for Python</b>\n    <br>\n    <a href=\"https://telegramplayground.github.io/pyrogram/\">\n        Documentation\n    </a>\n    \u2022\n    <a href=\"https://telegramplayground.github.io/pyrogram/releases/changes-in-this-fork.html\">\n        Releases\n    </a>\n    \u2022\n    <a href=\"https://PyroTGFork.t.me/2\">\n        News\n    </a>\n</p>\n\n## Pyrogram\n\n> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots\n\n``` python\nfrom pyrogram import Client, filters\n\napp = Client(\"my_account\")\n\n\n@app.on_message(filters.private)\nasync def hello(client, message):\n    await message.reply(\"Hello from Pyrogram!\")\n\n\napp.run()\n```\n\n**Pyrogram** is a modern, elegant and asynchronous [MTProto API](https://telegramplayground.github.io/pyrogram/topics/mtproto-vs-botapi)\nframework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot\nidentity (bot API alternative) using Python.\n\n### Key Features\n\n- **Ready**: Install Pyrogram with pip and start building your applications right away.\n- **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages.\n- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.\n- **Fast**: Boosted up by [TgCrypto](https://github.com/TelegramPlayGround/pyrogram-tgcrypto), a high-performance cryptography library written in C.  \n- **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support.\n- **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience).\n- **Powerful**: Full access to Telegram's API to execute any official client action and more.\n\n### Installing\n\n``` bash\npip3 install pyrotgfork\n```\n\n### Resources\n\n- Check out [the docs](https://telegramplayground.github.io/pyrogram) to learn more about Pyrogram, get started right\naway and discover more in-depth material for building your client applications.\n- Join the official channel at [PyroTGFork](https://PyroTGFork.t.me/2) and stay tuned for news, updates and announcements.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Fork of Pyrogram. Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
    "version": "2.2.13",
    "project_urls": {
        "Documentation": "https://telegramplayground.github.io/pyrogram/releases/changes-in-this-fork.html",
        "Homepage": "https://telegramplayground.github.io/pyrogram/",
        "Source": "https://github.com/TelegramPlayGround/Pyrogram",
        "Tracker": "https://github.com/TelegramPlayGround/Pyrogram/issues",
        "community": "https://PyroTGFork.t.me/2"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b9291235fd21243eb1076ef96439946062e7ab3a0761ccd278f72bfa0d9916d",
                "md5": "c267597a0cfba837ddba62e7453482e2",
                "sha256": "6ea7d1ff89c471486890de3481eb9f1bd5637378f9652a527f33cae6863ed6e0"
            },
            "downloads": -1,
            "filename": "pyrotgfork-2.2.13-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c267597a0cfba837ddba62e7453482e2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 5147128,
            "upload_time": "2025-07-10T05:51:07",
            "upload_time_iso_8601": "2025-07-10T05:51:07.500075Z",
            "url": "https://files.pythonhosted.org/packages/0b/92/91235fd21243eb1076ef96439946062e7ab3a0761ccd278f72bfa0d9916d/pyrotgfork-2.2.13-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "972bf6ed79a08a0855ab5cbe6629f8a5312761105f2226b4b497142a87fbcfd6",
                "md5": "e845d6d073f0ea926644c0bba5bd32ee",
                "sha256": "a5b9d0c91c797517f0531c6c66856c301f6dc477fdbf5aba76195007e180ab78"
            },
            "downloads": -1,
            "filename": "pyrotgfork-2.2.13.tar.gz",
            "has_sig": false,
            "md5_digest": "e845d6d073f0ea926644c0bba5bd32ee",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 514364,
            "upload_time": "2025-07-10T05:51:09",
            "upload_time_iso_8601": "2025-07-10T05:51:09.571886Z",
            "url": "https://files.pythonhosted.org/packages/97/2b/f6ed79a08a0855ab5cbe6629f8a5312761105f2226b4b497142a87fbcfd6/pyrotgfork-2.2.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-10 05:51:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "TelegramPlayGround",
    "github_project": "Pyrogram",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyrotgfork"
}
        
Elapsed time: 0.54642s