Kurigram


NameKurigram JSON
Version 2.1.35 PyPI version JSON
download
home_pagehttps://github.com/KurimuzonAkuma/pyrogram
SummaryElegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2024-12-24 18:33:45
maintainerNone
docs_urlNone
authorDan
requires_python~=3.8
licenseLGPLv3
keywords telegram chat messenger mtproto api client library python
VCS
bugtrack_url
requirements pyaes pysocks
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="https://github.com/KurimuzonAkuma/pyrogram">
        <img src="https://docs.kurigram.xyz/_static/pyrogram.png" alt="Pyrogram" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://kurigram.xyz">
        Homepage
    </a>
    •
    <a href="https://docs.kurigram.xyz">
        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.xyz/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

``` bash
pip3 install https://github.com/KurimuzonAkuma/pyrogram/archive/dev.zip --force-reinstall
```
> [!NOTE]
> I will release my fork to PyPi soon.

### Resources

- Check out the [docs](https://docs.kurigram.xyz) 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": "https://github.com/KurimuzonAkuma/pyrogram",
    "name": "Kurigram",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": null,
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": "Dan",
    "author_email": "dan@pyrogram.org",
    "download_url": "https://files.pythonhosted.org/packages/c7/47/0477ca94c6872e6c56caf8cd3ee4537ae9d911d45330c902e5d034f7d49b/kurigram-2.1.35.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/KurimuzonAkuma/pyrogram\">\n        <img src=\"https://docs.kurigram.xyz/_static/pyrogram.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.xyz\">\n        Homepage\n    </a>\n    \u2022\n    <a href=\"https://docs.kurigram.xyz\">\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.xyz/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\n``` bash\npip3 install https://github.com/KurimuzonAkuma/pyrogram/archive/dev.zip --force-reinstall\n```\n> [!NOTE]\n> I will release my fork to PyPi soon.\n\n### Resources\n\n- Check out the [docs](https://docs.kurigram.xyz) 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": "LGPLv3",
    "summary": "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
    "version": "2.1.35",
    "project_urls": {
        "Community": "https://t.me/pyrogram",
        "Documentation": "https://docs.pyrogram.org",
        "Download": "https://github.com/KurimuzonAkuma/pyrogram/releases/latest",
        "Homepage": "https://github.com/KurimuzonAkuma/pyrogram",
        "Source": "https://github.com/KurimuzonAkuma/pyrogram",
        "Tracker": "https://github.com/KurimuzonAkuma/pyrogram/issues"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "183149b475a9b84421e0d03fb1be1522fb72a8fb5b45fa98bc48a1d538c3de36",
                "md5": "0fdb9d77fe2c6ec04fbda7aa6c093c44",
                "sha256": "bd40151b361d428a219575ab4aa69341662fbc4658dcc819b04f474cef41b52a"
            },
            "downloads": -1,
            "filename": "Kurigram-2.1.35-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0fdb9d77fe2c6ec04fbda7aa6c093c44",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 4695942,
            "upload_time": "2024-12-24T18:33:43",
            "upload_time_iso_8601": "2024-12-24T18:33:43.391327Z",
            "url": "https://files.pythonhosted.org/packages/18/31/49b475a9b84421e0d03fb1be1522fb72a8fb5b45fa98bc48a1d538c3de36/Kurigram-2.1.35-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7470477ca94c6872e6c56caf8cd3ee4537ae9d911d45330c902e5d034f7d49b",
                "md5": "80f6ac22d422fb63df3c14c8faa3464c",
                "sha256": "48659cc507408d8764619a53dc4a9ccc00808da1086c34c5860e096f109720d1"
            },
            "downloads": -1,
            "filename": "kurigram-2.1.35.tar.gz",
            "has_sig": false,
            "md5_digest": "80f6ac22d422fb63df3c14c8faa3464c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 484634,
            "upload_time": "2024-12-24T18:33:45",
            "upload_time_iso_8601": "2024-12-24T18:33:45.774699Z",
            "url": "https://files.pythonhosted.org/packages/c7/47/0477ca94c6872e6c56caf8cd3ee4537ae9d911d45330c902e5d034f7d49b/kurigram-2.1.35.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-24 18:33:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KurimuzonAkuma",
    "github_project": "pyrogram",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "pyaes",
            "specs": [
                [
                    "==",
                    "1.6.1"
                ]
            ]
        },
        {
            "name": "pysocks",
            "specs": [
                [
                    "==",
                    "1.7.1"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "kurigram"
}
        
Dan
Elapsed time: 0.39189s