pyrogrammod


Namepyrogrammod JSON
Version 2.1.4 PyPI version JSON
download
home_pagehttps://github.com/PyrogramMod/PyrogramMod
SummaryModified version of the Pyrogram Telegram MTProto API framework in Python for users and bots.
upload_time2024-09-15 21:38:43
maintainerNone
docs_urlNone
authorDan (original author), PyrogramMod (Fork Maintainer)
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/pyrogrammod/pyrogrammod">
        <img src="https://pyrogrammod.readthedocs.io/_static/pyrogram.png" alt="Pyrogram" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b> (Fork of <a href="github.com/pyrogram/pyrogram">Pyrogram</a>)
    <br>
    <a href="https://pyrogrammod.readthedocs.io/">
        Homepage
    </a>
    •
    <a href="https://pyrogrammod.readthedocs.io/">
        Documentation
    </a>
    •
    <a href="https://t.me/pyrogrammodnews">
        News
    </a>
</p>

# PyrogramMod <br>[![PyPI](https://img.shields.io/pypi/v/pyrogrammod.svg?logo=python&logoColor=%23959DA5&label=pypi&labelColor=%23282f37)](https://pypi.org/project/pyrogrammod/) [![Downloads](https://pepy.tech/badge/pyrogrammod)](https://pepy.tech/project/pyrogrammod)

> 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.pyrogram.org/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 Pyrogram, you can consider:

- [Become a GitHub sponsor](https://github.com/sponsors/delivrance).
- [Become a LiberaPay patron](https://liberapay.com/delivrance).
- [Become an OpenCollective backer](https://opencollective.com/pyrogram).

### 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/PyrogramMod/PyrogramMod/archive/refs/heads/main.zip
```

### Resources

- The docs contain lots of resources to help you get started with Pyrogram: https://docs.pyrogram.org.
- Seeking extra help? Come join and ask our community: https://t.me/pyrogram.
- For other kind of inquiries, you can send a [message](https://t.me/haskell) or an [e-mail](mailto:dan@pyrogram.org).

### Copyright & License

- Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>
- Licensed under the terms of the [GNU Lesser General Public License v3 or later (LGPLv3+)](COPYING.lesser)

### INFO

- 📕 Official Repo: https://github.com/pyrogram/pyrogram
- 🗞 News: https://t.me/pyrogram
- 💭 Support Group: https://t.me/pyrogramchat
- 📚 Docs: https://docs.pyrogram.org
------------------------------------------------------------
- 📕 Un-Official Repo: https://github.com/PyrogramMod/PyrogramMod/
- 🗞 News: https://t.me/PyroGramModNews
- 💭 Support Group: https://t.me/pyrogramodchat
- 📚 Docs: https://pyrogrammod.readthedocs.io/
------------------------------------------------------------

- Check out the docs at https://docs.pyrogram.org 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 https://t.me/pyrogram and stay tuned for news, updates and announcements.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PyrogramMod/PyrogramMod",
    "name": "pyrogrammod",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": null,
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": "Dan (original author), PyrogramMod (Fork Maintainer)",
    "author_email": null,
    "download_url": "https://github.com/PyrogramMod/PyrogramMod/releases/latest",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/pyrogrammod/pyrogrammod\">\n        <img src=\"https://pyrogrammod.readthedocs.io/_static/pyrogram.png\" alt=\"Pyrogram\" width=\"128\">\n    </a>\n    <br>\n    <b>Telegram MTProto API Framework for Python</b> (Fork of <a href=\"github.com/pyrogram/pyrogram\">Pyrogram</a>)\n    <br>\n    <a href=\"https://pyrogrammod.readthedocs.io/\">\n        Homepage\n    </a>\n    \u2022\n    <a href=\"https://pyrogrammod.readthedocs.io/\">\n        Documentation\n    </a>\n    \u2022\n    <a href=\"https://t.me/pyrogrammodnews\">\n        News\n    </a>\n</p>\n\n# PyrogramMod <br>[![PyPI](https://img.shields.io/pypi/v/pyrogrammod.svg?logo=python&logoColor=%23959DA5&label=pypi&labelColor=%23282f37)](https://pypi.org/project/pyrogrammod/) [![Downloads](https://pepy.tech/badge/pyrogrammod)](https://pepy.tech/project/pyrogrammod)\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.pyrogram.org/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 Pyrogram, you can consider:\n\n- [Become a GitHub sponsor](https://github.com/sponsors/delivrance).\n- [Become a LiberaPay patron](https://liberapay.com/delivrance).\n- [Become an OpenCollective backer](https://opencollective.com/pyrogram).\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/PyrogramMod/PyrogramMod/archive/refs/heads/main.zip\n```\n\n### Resources\n\n- The docs contain lots of resources to help you get started with Pyrogram: https://docs.pyrogram.org.\n- Seeking extra help? Come join and ask our community: https://t.me/pyrogram.\n- For other kind of inquiries, you can send a [message](https://t.me/haskell) or an [e-mail](mailto:dan@pyrogram.org).\n\n### Copyright & License\n\n- Copyright (C) 2017-2022 Dan <<https://github.com/delivrance>>\n- Licensed under the terms of the [GNU Lesser General Public License v3 or later (LGPLv3+)](COPYING.lesser)\n\n### INFO\n\n- \ud83d\udcd5 Official Repo: https://github.com/pyrogram/pyrogram\n- \ud83d\uddde News: https://t.me/pyrogram\n- \ud83d\udcad Support Group: https://t.me/pyrogramchat\n- \ud83d\udcda Docs: https://docs.pyrogram.org\n------------------------------------------------------------\n- \ud83d\udcd5 Un-Official Repo: https://github.com/PyrogramMod/PyrogramMod/\n- \ud83d\uddde News: https://t.me/PyroGramModNews\n- \ud83d\udcad Support Group: https://t.me/pyrogramodchat\n- \ud83d\udcda Docs: https://pyrogrammod.readthedocs.io/\n------------------------------------------------------------\n\n- Check out the docs at https://docs.pyrogram.org 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 https://t.me/pyrogram and stay tuned for news, updates and announcements.\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Modified version of the Pyrogram Telegram MTProto API framework in Python for users and bots.",
    "version": "2.1.4",
    "project_urls": {
        "Community": "https://t.me/pyrogramodchat",
        "Documentation": "https://pyrogrammod.readthedocs.io",
        "Download": "https://github.com/PyrogramMod/PyrogramMod/releases/latest",
        "Homepage": "https://github.com/PyrogramMod/PyrogramMod",
        "Source": "https://github.com/PyrogramMod/PyrogramMod",
        "Tracker": "https://github.com/PyrogramMod/PyrogramMod/issues"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad607aebb3e591b215203a342509ac1461227a4f8333bd5f6bef84c49d3f09d8",
                "md5": "702fb80aa2deb949c8010e19a3203248",
                "sha256": "a1640faec2116c6ee9a9a531ef8e4b03b9c730ab9b2882cc5b70a660f8233e00"
            },
            "downloads": -1,
            "filename": "pyrogrammod-2.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "702fb80aa2deb949c8010e19a3203248",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 4300577,
            "upload_time": "2024-09-15T21:38:43",
            "upload_time_iso_8601": "2024-09-15T21:38:43.374738Z",
            "url": "https://files.pythonhosted.org/packages/ad/60/7aebb3e591b215203a342509ac1461227a4f8333bd5f6bef84c49d3f09d8/pyrogrammod-2.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-15 21:38:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PyrogramMod",
    "github_project": "PyrogramMod",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "pyrogrammod"
}
        
Elapsed time: 5.03252s