Tangosuper


NameTangosuper JSON
Version 3.0 PyPI version JSON
download
home_pagehttps://github.com/tangosuper
SummaryElegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
upload_time2024-07-01 11:03:06
maintainerNone
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/tangosuper/tangosuper">
        <img src="https://docs.tangosuper.org/_static/tangosuper.png" alt="Tangosuper" width="128">
    </a>
    <br>
    <b>Telegram MTProto API Framework for Python</b>
    <br>
    <a href="https://tangosuper.org">
        Homepage
    </a>
    •
    <a href="https://docs.tangosuper.org">
        Documentation
    </a>
    •
    <a href="https://docs.tangosuper.org/releases">
        Releases
    </a>
    •
    <a href="https://t.me/tangosuper">
        News
    </a>
</p>

## Tangosuper

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

``` python
from tangosuper import Client, filters

app = Client("my_account")


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


app.run()
```

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

### Key Features

- **Ready**: Install Tangosuper 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/tangosuper/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/null-nick/Tangosuper-Mod/archive/refs/heads/main.zip
```

### Resources

- The docs contain lots of resources to help you get started with Tangosuper: https://docs.tangosuper.org.
- Seeking extra help? Come join and ask our community: https://t.me/tangosuper.
- For other kind of inquiries, you can send a [message](https://t.me/haskell) or an [e-mail](mailto:dan@tangosuper.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/tangosuper/tangosuper
- 🗞 News: https://t.me/tangosuper
- 💭 Support Group: https://t.me/tangosuperchat
- 📚 Docs: https://docs.tangosuper.org
------------------------------------------------------------
- 📕 Un-Official Repo: https://github.com/null-nick/Tangosuper-Mod/
- 🗞 News: https://t.me/PyroGramMod
- 💭 Support Group: https://t.me/PyroGramModChat
- 📚 Docs: <s>https://docs.documentations.ml</s> <b>Offline</b>
------------------------------------------------------------

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



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tangosuper",
    "name": "Tangosuper",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": null,
    "keywords": "telegram chat messenger mtproto api client library python",
    "author": "Dan",
    "author_email": "dan@tangosuper.org",
    "download_url": "https://github.com/tangosuper/tangosuper/releases/latest",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://github.com/tangosuper/tangosuper\">\n        <img src=\"https://docs.tangosuper.org/_static/tangosuper.png\" alt=\"Tangosuper\" width=\"128\">\n    </a>\n    <br>\n    <b>Telegram MTProto API Framework for Python</b>\n    <br>\n    <a href=\"https://tangosuper.org\">\n        Homepage\n    </a>\n    \u2022\n    <a href=\"https://docs.tangosuper.org\">\n        Documentation\n    </a>\n    \u2022\n    <a href=\"https://docs.tangosuper.org/releases\">\n        Releases\n    </a>\n    \u2022\n    <a href=\"https://t.me/tangosuper\">\n        News\n    </a>\n</p>\n\n## Tangosuper\n\n> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots\n\n``` python\nfrom tangosuper 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 Tangosuper!\")\n\n\napp.run()\n```\n\n**Tangosuper** is a modern, elegant and asynchronous [MTProto API](https://docs.tangosuper.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 Tangosuper, 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/tangosuper).\n\n### Key Features\n\n- **Ready**: Install Tangosuper 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/tangosuper/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/null-nick/Tangosuper-Mod/archive/refs/heads/main.zip\n```\n\n### Resources\n\n- The docs contain lots of resources to help you get started with Tangosuper: https://docs.tangosuper.org.\n- Seeking extra help? Come join and ask our community: https://t.me/tangosuper.\n- For other kind of inquiries, you can send a [message](https://t.me/haskell) or an [e-mail](mailto:dan@tangosuper.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/tangosuper/tangosuper\n- \ud83d\uddde News: https://t.me/tangosuper\n- \ud83d\udcad Support Group: https://t.me/tangosuperchat\n- \ud83d\udcda Docs: https://docs.tangosuper.org\n------------------------------------------------------------\n- \ud83d\udcd5 Un-Official Repo: https://github.com/null-nick/Tangosuper-Mod/\n- \ud83d\uddde News: https://t.me/PyroGramMod\n- \ud83d\udcad Support Group: https://t.me/PyroGramModChat\n- \ud83d\udcda Docs: <s>https://docs.documentations.ml</s> <b>Offline</b>\n------------------------------------------------------------\n\n- Check out the docs at https://docs.tangosuper.org to learn more about Tangosuper, get started right\naway and discover more in-depth material for building your client applications.\n- Join the official channel at https://t.me/tangosuper and stay tuned for news, updates and announcements.\n\n\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
    "version": "3.0",
    "project_urls": {
        "Community": "https://t.me/tangosuper",
        "Documentation": "https://docs.tangosuper.org",
        "Download": "https://github.com/tangosuper/tangosuper/releases/latest",
        "Homepage": "https://github.com/tangosuper",
        "Source": "https://github.com/tangosuper/tangosuper",
        "Tracker": "https://github.com/tangosuper/tangosuper/issues"
    },
    "split_keywords": [
        "telegram",
        "chat",
        "messenger",
        "mtproto",
        "api",
        "client",
        "library",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56aec664a04c3fb7227d5bd0e1a07a365745907f4d1f4d25b447be8e90aabc5b",
                "md5": "fabe9e40f7e762c11db91cc111fb843d",
                "sha256": "80b80cde761effee4618f8548b41e96a58515413275099414bac2720ab634e1a"
            },
            "downloads": -1,
            "filename": "Tangosuper-3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fabe9e40f7e762c11db91cc111fb843d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.7",
            "size": 3787312,
            "upload_time": "2024-07-01T11:03:06",
            "upload_time_iso_8601": "2024-07-01T11:03:06.568107Z",
            "url": "https://files.pythonhosted.org/packages/56/ae/c664a04c3fb7227d5bd0e1a07a365745907f4d1f4d25b447be8e90aabc5b/Tangosuper-3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-01 11:03:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tangosuper",
    "github_project": "tangosuper",
    "github_not_found": true,
    "lcname": "tangosuper"
}
        
Dan
Elapsed time: 0.24975s