embygram


Nameembygram JSON
Version 2025.7.27 PyPI version JSON
download
home_pageNone
SummaryElegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2025-07-26 12:34:47
maintainerKurimuzonAkuma
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords api chat client library messenger mtproto python telegram
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/KurimuzonAkuma/pyrogram">
        <img src="https://raw.githubusercontent.com/KurimuzonAkuma/kurigramartwork/master/kurigram-logo.png" alt="Pyrogram" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://kurigram.live">
        Homepage
    </a>
    •
    <a href="https://docs.kurigram.live">
        Documentation
    </a>
    •
    <a href="https://t.me/kurigram_news">
        News
    </a>
    •
    <a href="https://t.me/kurigram_chat">
        Chat
    </a>
</p>

## Pyrogram

> [!NOTE]
> Unfortunately, the original pyrogram is no longer supported. I will try to be your @delivrance.

> 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://docs.kurigram.live/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.

### Support

If you'd like to support my fork, you can consider:

- `kurimuzonakuma.ton` - TON
- `TCbZ7CSpTvTJ6rno2eoWWYBx7hmYF75wk3` - USDT TRC20

### 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/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

Stable version

``` bash
pip3 install kurigram
```

Dev version
``` bash
pip3 install https://github.com/KurimuzonAkuma/pyrogram/archive/dev.zip --force-reinstall
```

### Resources

- Check out the [docs](https://docs.kurigram.live) to learn more about Pyrogram, get started right
away and discover more in-depth material for building your client applications.
- Join the [official channel](https://t.me/kurigram_news) and stay tuned for news, updates and announcements.
- Join the [official chat](https://t.me/kurigram_chat) to communicate with people.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "embygram",
    "maintainer": "KurimuzonAkuma",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "api, chat, client, library, messenger, mtproto, python, telegram",
    "author": null,
    "author_email": "Dan <dan@pyrogram.org>",
    "download_url": "https://files.pythonhosted.org/packages/ae/20/19e721f96151999403fe4c3e5551a08506fa75035ca5536ac56cbf683569/embygram-2025.7.27.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/KurimuzonAkuma/pyrogram\">\n        <img src=\"https://raw.githubusercontent.com/KurimuzonAkuma/kurigramartwork/master/kurigram-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://kurigram.live\">\n        Homepage\n    </a>\n    \u2022\n    <a href=\"https://docs.kurigram.live\">\n        Documentation\n    </a>\n    \u2022\n    <a href=\"https://t.me/kurigram_news\">\n        News\n    </a>\n    \u2022\n    <a href=\"https://t.me/kurigram_chat\">\n        Chat\n    </a>\n</p>\n\n## Pyrogram\n\n> [!NOTE]\n> Unfortunately, the original pyrogram is no longer supported. I will try to be your @delivrance.\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://docs.kurigram.live/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### Support\n\nIf you'd like to support my fork, you can consider:\n\n- `kurimuzonakuma.ton` - TON\n- `TCbZ7CSpTvTJ6rno2eoWWYBx7hmYF75wk3` - USDT TRC20\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/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\nStable version\n\n``` bash\npip3 install kurigram\n```\n\nDev version\n``` bash\npip3 install https://github.com/KurimuzonAkuma/pyrogram/archive/dev.zip --force-reinstall\n```\n\n### Resources\n\n- Check out the [docs](https://docs.kurigram.live) 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](https://t.me/kurigram_news) and stay tuned for news, updates and announcements.\n- Join the [official chat](https://t.me/kurigram_chat) to communicate with people.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
    "version": "2025.7.27",
    "project_urls": {
        "Community": "https://t.me/kurigram_chat",
        "Documentation": "https://docs.kurigram.live",
        "Homepage": "https://kurigram.live",
        "Issues": "https://github.com/KurimuzonAkuma/pyrogram/issues",
        "Source": "https://github.com/KurimuzonAkuma/pyrogram"
    },
    "split_keywords": [
        "api",
        " chat",
        " client",
        " library",
        " messenger",
        " mtproto",
        " python",
        " telegram"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71b5fed37ba7efb71057566c9b922d3a0483eedd049f929f71a9ed3b19944a72",
                "md5": "c3ee83d0896c7cf426f8328bb3d3cbc3",
                "sha256": "0894c6ba7e07fab2d85e1f5ab9d583b02aaf6dbd94e0be5f4a282ffea5cf9f77"
            },
            "downloads": -1,
            "filename": "embygram-2025.7.27-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c3ee83d0896c7cf426f8328bb3d3cbc3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 4934805,
            "upload_time": "2025-07-26T12:34:45",
            "upload_time_iso_8601": "2025-07-26T12:34:45.758830Z",
            "url": "https://files.pythonhosted.org/packages/71/b5/fed37ba7efb71057566c9b922d3a0483eedd049f929f71a9ed3b19944a72/embygram-2025.7.27-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae2019e721f96151999403fe4c3e5551a08506fa75035ca5536ac56cbf683569",
                "md5": "5ce7292487247ffed735b3707e8892ef",
                "sha256": "8843068f5f90f5e09baf8e80e1694020a3bc6987b66780f61b6d18fb7748379f"
            },
            "downloads": -1,
            "filename": "embygram-2025.7.27.tar.gz",
            "has_sig": false,
            "md5_digest": "5ce7292487247ffed735b3707e8892ef",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 497528,
            "upload_time": "2025-07-26T12:34:47",
            "upload_time_iso_8601": "2025-07-26T12:34:47.919377Z",
            "url": "https://files.pythonhosted.org/packages/ae/20/19e721f96151999403fe4c3e5551a08506fa75035ca5536ac56cbf683569/embygram-2025.7.27.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-26 12:34:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KurimuzonAkuma",
    "github_project": "pyrogram",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "embygram"
}
        
Elapsed time: 1.24700s