pyrogram-dev


Namepyrogram-dev JSON
Version 2.1.1 PyPI version JSON
download
home_pagehttps://github.com/pyrogram-dev/pyrogram-dev
SummaryElegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2024-02-24 19:43:50
maintainer
docs_urlNone
authorAdityaHalder
requires_python~=3.8
licenseLGPLv3
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/pyrogram-dev/pyrogram-dev">
        <img src="https://graph.org/file/0fef218ce9414e4115c3d.png" alt="Pyrogram-Dev" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://github.com/AdityaHalder/pyrogram-dev">
        Homepage
    </a>
    •
    <a href="https://docs.pyrogram.org">
        Documentation
    </a>
    •
    <a href="https://github.com/AdityaHalder/pyrogram-dev/releases/latest">
        Releases
    </a>
    •
    <a href="https://t.me/AdityaServer">
        News
    </a>
</p>

## Pyrogram-Dev

> A fork version elegant, modern and asynchronous Telegram MTProto API framework of [Pyrogram](https://github.com/pyrogram/pyrogram) library 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-Dev!")


app.run()
```

**Pyrogram-Dev** is a modern, elegant and asynchronous [MTProto API](https://github.com/pyrogram-dev/pyrogram-dev)
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-Dev 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 --force-reinstall pyrogram-dev
```

### Resources

- Join our official [**`telegram channel`**](https://t.me/adityaserver) and stay tuned for news, updates and announcements.


### Special Thanks

- [Pyrogram](https://github.com/pyrogram/pyrogram) - Pyrogram is a original library source from which pyrogram-dev was built.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyrogram-dev/pyrogram-dev",
    "name": "pyrogram-dev",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": "",
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": "AdityaHalder",
    "author_email": "xdityahalder@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/27/e5/a771cb83cf99b19b46a73b41500c24250800932be3b6f05f24d856c7b268/pyrogram-dev-2.1.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/pyrogram-dev/pyrogram-dev\">\n        <img src=\"https://graph.org/file/0fef218ce9414e4115c3d.png\" alt=\"Pyrogram-Dev\" width=\"128\">\n    </a>\n    <br>\n    <b>Telegram MTProto API Framework for Python</b>\n    <br>\n    <a href=\"https://github.com/AdityaHalder/pyrogram-dev\">\n        Homepage\n    </a>\n    \u2022\n    <a href=\"https://docs.pyrogram.org\">\n        Documentation\n    </a>\n    \u2022\n    <a href=\"https://github.com/AdityaHalder/pyrogram-dev/releases/latest\">\n        Releases\n    </a>\n    \u2022\n    <a href=\"https://t.me/AdityaServer\">\n        News\n    </a>\n</p>\n\n## Pyrogram-Dev\n\n> A fork version elegant, modern and asynchronous Telegram MTProto API framework of [Pyrogram](https://github.com/pyrogram/pyrogram) library in Python for users and bots.\n\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-Dev!\")\n\n\napp.run()\n```\n\n**Pyrogram-Dev** is a modern, elegant and asynchronous [MTProto API](https://github.com/pyrogram-dev/pyrogram-dev)\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\n### Key Features\n\n- **Ready**: Install Pyrogram-Dev 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 --force-reinstall pyrogram-dev\n```\n\n### Resources\n\n- Join our official [**`telegram channel`**](https://t.me/adityaserver) and stay tuned for news, updates and announcements.\n\n\n### Special Thanks\n\n- [Pyrogram](https://github.com/pyrogram/pyrogram) - Pyrogram is a original library source from which pyrogram-dev was built.\n\n\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
    "version": "2.1.1",
    "project_urls": {
        "Documentation": "https://docs.pyrogram.org",
        "Download": "https://github.com/pyrogram-dev/pyrogram-dev/releases/latest",
        "Homepage": "https://github.com/pyrogram-dev/pyrogram-dev",
        "Source": "https://github.com/pyrogram-dev/pyrogram-dev"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11a6edc305eaeb0cf758da663c55bec247b4b60cf1f528c5d5632319f1dfacea",
                "md5": "7eb3e90abd8eeaf705335fa96013d3eb",
                "sha256": "29b2f2380aff08651c15d05817d5e6d8b1ac52ead19574feeb4f8fefb908192e"
            },
            "downloads": -1,
            "filename": "pyrogram_dev-2.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7eb3e90abd8eeaf705335fa96013d3eb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 4039548,
            "upload_time": "2024-02-24T19:43:46",
            "upload_time_iso_8601": "2024-02-24T19:43:46.816705Z",
            "url": "https://files.pythonhosted.org/packages/11/a6/edc305eaeb0cf758da663c55bec247b4b60cf1f528c5d5632319f1dfacea/pyrogram_dev-2.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27e5a771cb83cf99b19b46a73b41500c24250800932be3b6f05f24d856c7b268",
                "md5": "852206136f2987dc58c98893d088c97d",
                "sha256": "8bf10c470f11e7001ded901bf049b1ac9380c9dd0850653e65bce3aab22f2454"
            },
            "downloads": -1,
            "filename": "pyrogram-dev-2.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "852206136f2987dc58c98893d088c97d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 410758,
            "upload_time": "2024-02-24T19:43:50",
            "upload_time_iso_8601": "2024-02-24T19:43:50.645717Z",
            "url": "https://files.pythonhosted.org/packages/27/e5/a771cb83cf99b19b46a73b41500c24250800932be3b6f05f24d856c7b268/pyrogram-dev-2.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-24 19:43:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyrogram-dev",
    "github_project": "pyrogram-dev",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pyrogram-dev"
}
        
Elapsed time: 0.22752s