pyromodz


Namepyromodz JSON
Version 2.1.0 PyPI version JSON
download
home_pagehttps://github.com/Kaal-xD/pyromodz
SummaryElegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2023-12-20 12:18:57
maintainer
docs_urlNone
authorKaal-xD
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/Kaal-xD/pyromodz">
        <img src="https://telegra.ph/file/de7f160cac1894eb51135.png" alt="Pyromodz" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://github.com/Kaal-xD/pyromodz">
        Homepage
    </a>
    •
    <a href="https://t.me/pyromodzchat">
        Documentation
    </a>
    •
    <a href="https://t.me/pyromodz">
        Releases
    </a>
    •
    <a href="https://t.me/pyromodz">
        News
    </a>
</p>

## Pyromodz

> 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 with [Pyromod](https://github.com/usernein/pyromod) features.


``` python
from pyromodz import Client, filters

app = Client("my_account")


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


app.run()
```

**Pyromodz** is a modern, elegant and asynchronous [MTProto API](https://github.com/Kaal-xD/pyromodz)
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 Pyromodz 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 pyromodz
```

### Resources

- Join the official channel at https://t.me/pyromodz and stay tuned for news, updates and announcements.


### Special Thanks

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

- [Pyromod](https://github.com/usernein/pyromod) - An add-on to make developing Telegram bots faster and more efficient.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Kaal-xD/pyromodz",
    "name": "pyromodz",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": "",
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": "Kaal-xD",
    "author_email": "dan@pyromodz.org",
    "download_url": "https://files.pythonhosted.org/packages/d2/4d/6b0441ab5c523787188c95b797785d4838edab1ebf424bfc5bc901c89514/pyromodz-2.1.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/Kaal-xD/pyromodz\">\n        <img src=\"https://telegra.ph/file/de7f160cac1894eb51135.png\" alt=\"Pyromodz\" width=\"128\">\n    </a>\n    <br>\n    <b>Telegram MTProto API Framework for Python</b>\n    <br>\n    <a href=\"https://github.com/Kaal-xD/pyromodz\">\n        Homepage\n    </a>\n    \u2022\n    <a href=\"https://t.me/pyromodzchat\">\n        Documentation\n    </a>\n    \u2022\n    <a href=\"https://t.me/pyromodz\">\n        Releases\n    </a>\n    \u2022\n    <a href=\"https://t.me/pyromodz\">\n        News\n    </a>\n</p>\n\n## Pyromodz\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 with [Pyromod](https://github.com/usernein/pyromod) features.\n\n\n``` python\nfrom pyromodz 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 Pyromodz!\")\n\n\napp.run()\n```\n\n**Pyromodz** is a modern, elegant and asynchronous [MTProto API](https://github.com/Kaal-xD/pyromodz)\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 Pyromodz 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 pyromodz\n```\n\n### Resources\n\n- Join the official channel at https://t.me/pyromodz 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 pyromodz was built.\n\n- [Pyromod](https://github.com/usernein/pyromod) - An add-on to make developing Telegram bots faster and more efficient.\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.0",
    "project_urls": {
        "Community": "https://t.me/pyromodz",
        "Documentation": "https://docs.pyromodz.org",
        "Download": "https://github.com/Kaal-xD/pyromodz/releases/latest",
        "Homepage": "https://github.com/Kaal-xD/pyromodz",
        "Source": "https://github.com/Kaal-xD/pyromodz",
        "Tracker": "https://github.com/Kaal-xD/pyromodz/issues"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bcfeaffbdaa9ebd34642e3ef19deb2cf735d5295e34cb1e1cd9d4fe01a3de9b",
                "md5": "101bc6277ef5e4cfcdbb458704f7d36c",
                "sha256": "7ce8425ced4c7f359c250c87b5fda407a766470353466e27ac2c748e78d714eb"
            },
            "downloads": -1,
            "filename": "pyromodz-2.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "101bc6277ef5e4cfcdbb458704f7d36c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 3829428,
            "upload_time": "2023-12-20T12:18:55",
            "upload_time_iso_8601": "2023-12-20T12:18:55.354864Z",
            "url": "https://files.pythonhosted.org/packages/1b/cf/eaffbdaa9ebd34642e3ef19deb2cf735d5295e34cb1e1cd9d4fe01a3de9b/pyromodz-2.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d24d6b0441ab5c523787188c95b797785d4838edab1ebf424bfc5bc901c89514",
                "md5": "17d89c7ea6535547d7235a9f8fea2ebb",
                "sha256": "56f4c2d884d990a4e04a909c9201757a99d31f01cf68d883040f6c3b15649702"
            },
            "downloads": -1,
            "filename": "pyromodz-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "17d89c7ea6535547d7235a9f8fea2ebb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 358312,
            "upload_time": "2023-12-20T12:18:57",
            "upload_time_iso_8601": "2023-12-20T12:18:57.093844Z",
            "url": "https://files.pythonhosted.org/packages/d2/4d/6b0441ab5c523787188c95b797785d4838edab1ebf424bfc5bc901c89514/pyromodz-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-20 12:18:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Kaal-xD",
    "github_project": "pyromodz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "pyromodz"
}
        
Elapsed time: 0.17334s