noelgram1


Namenoelgram1 JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/noelgram
SummaryElegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2023-07-16 09:34:17
maintainer
docs_urlNone
authorDan
requires_python~=3.7
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/Noelgram/Noelgram">
        <img src="https://docs.Noelgram.org/_static/Noelgram.png" alt="Noelgram" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://noelgram.org">
        Homepage
    </a>
    •
    <a href="https://docs.noelgram.org">
        Documentation
    </a>
    •
    <a href="https://docs.noelgram.org/releases">
        Releases
    </a>
    •
    <a href="https://t.me/noelgram">
        News
    </a>
</p>

## Noelgram

> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots

``` python
from noelgram import Client, filters

app = Client("my_account")


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


app.run()
```

**Noelgram** is a modern, elegant and asynchronous [MTProto API](https://docs.noelgram.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 Noelgram, 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/noelgram).

### Key Features

- **Ready**: Install Noelgram 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/noelgram/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 noelgram
```

### Resources

- Check out the docs at https://docs.noelgram.org to learn more about Noelgram, get started right
away and discover more in-depth material for building your client applications.
- Join the official channel at https://t.me/noelgram and stay tuned for news, updates and announcements.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/noelgram",
    "name": "noelgram1",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": "",
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": "Dan",
    "author_email": "dan@noelgram.org",
    "download_url": "https://files.pythonhosted.org/packages/91/8c/87e499cba26a5ef046d174e885fa6a43f0e1303c981639fa567a41ca5507/noelgram1-0.0.4.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\r\n    <a href=\"https://github.com/Noelgram/Noelgram\">\r\n        <img src=\"https://docs.Noelgram.org/_static/Noelgram.png\" alt=\"Noelgram\" width=\"128\">\r\n    </a>\r\n    <br>\r\n    <b>Telegram MTProto API Framework for Python</b>\r\n    <br>\r\n    <a href=\"https://noelgram.org\">\r\n        Homepage\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://docs.noelgram.org\">\r\n        Documentation\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://docs.noelgram.org/releases\">\r\n        Releases\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://t.me/noelgram\">\r\n        News\r\n    </a>\r\n</p>\r\n\r\n## Noelgram\r\n\r\n> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots\r\n\r\n``` python\r\nfrom noelgram import Client, filters\r\n\r\napp = Client(\"my_account\")\r\n\r\n\r\n@app.on_message(filters.private)\r\nasync def hello(client, message):\r\n    await message.reply(\"Hello from Noelgram!\")\r\n\r\n\r\napp.run()\r\n```\r\n\r\n**Noelgram** is a modern, elegant and asynchronous [MTProto API](https://docs.noelgram.org/topics/mtproto-vs-botapi)\r\nframework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot\r\nidentity (bot API alternative) using Python.\r\n\r\n### Support\r\n\r\nIf you'd like to support Noelgram, you can consider:\r\n\r\n- [Become a GitHub sponsor](https://github.com/sponsors/delivrance).\r\n- [Become a LiberaPay patron](https://liberapay.com/delivrance).\r\n- [Become an OpenCollective backer](https://opencollective.com/noelgram).\r\n\r\n### Key Features\r\n\r\n- **Ready**: Install Noelgram with pip and start building your applications right away.\r\n- **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages.\r\n- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.\r\n- **Fast**: Boosted up by [TgCrypto](https://github.com/noelgram/tgcrypto), a high-performance cryptography library written in C.  \r\n- **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support.\r\n- **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience).\r\n- **Powerful**: Full access to Telegram's API to execute any official client action and more.\r\n\r\n### Installing\r\n\r\n``` bash\r\npip3 install noelgram\r\n```\r\n\r\n### Resources\r\n\r\n- Check out the docs at https://docs.noelgram.org to learn more about Noelgram, get started right\r\naway and discover more in-depth material for building your client applications.\r\n- Join the official channel at https://t.me/noelgram and stay tuned for news, updates and announcements.\r\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
    "version": "0.0.4",
    "project_urls": {
        "Community": "https://t.me/noelgram",
        "Documentation": "https://docs.noelgram.org",
        "Download": "https://github.com/noelgram/noelgram/releases/latest",
        "Homepage": "https://github.com/noelgram",
        "Source": "https://github.com/noelgram/noelgram",
        "Tracker": "https://github.com/noelgram/noelgram/issues"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "918c87e499cba26a5ef046d174e885fa6a43f0e1303c981639fa567a41ca5507",
                "md5": "c5b447cacc7b8cc503d9121497a4fdcb",
                "sha256": "3b29a87e2971d3da5ee6811df25fc0c3c92ac86a91bdffec3ccaab796920e8c6"
            },
            "downloads": -1,
            "filename": "noelgram1-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "c5b447cacc7b8cc503d9121497a4fdcb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.7",
            "size": 351146,
            "upload_time": "2023-07-16T09:34:17",
            "upload_time_iso_8601": "2023-07-16T09:34:17.624707Z",
            "url": "https://files.pythonhosted.org/packages/91/8c/87e499cba26a5ef046d174e885fa6a43f0e1303c981639fa567a41ca5507/noelgram1-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-16 09:34:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "noelgram",
    "github_project": "noelgram",
    "github_not_found": true,
    "lcname": "noelgram1"
}
        
Dan
Elapsed time: 0.08964s