discord-py-interactions


Namediscord-py-interactions JSON
Version 5.12.0 PyPI version JSON
download
home_pagehttps://github.com/interactions-py/interactions.py
SummaryEasy, simple, scalable and modular: a Python API wrapper for interactions.
upload_time2024-04-30 08:21:27
maintainerNone
docs_urlNone
authorLordOfPolls
requires_python>=3.10
licenseNone
keywords
VCS
bugtrack_url
requirements aiohttp attrs croniter discord-typings emoji tomli
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

   # Interactions.py
   <br>

   ![](https://img.shields.io/pypi/v/discord-py-interactions.svg?label=Version&logo=pypi)
   ![](https://img.shields.io/badge/Python-3.10+-1081c1?logo=python)
   [![](https://img.shields.io/pypi/dm/discord-py-slash-command.svg?logo=python&label=Downloads)](https://pypi.org/project/discord-py-interactions/)

   [![](https://img.shields.io/badge/Code%20Style-black-000000.svg)](https://github.com/psf/black)
   [![License](https://img.shields.io/badge/License-MIT-blue)](https://github.com/interactions-py/interactions.py/blob/stable/LICENSE)

   [![](https://img.shields.io/badge/Docs-latest-x?logo=readthedocs)](https://interactions-py.github.io/interactions.py/)
   [![](https://img.shields.io/badge/Guides-latest-x?logo=readthedocs)](https://interactions-py.github.io/interactions.py/Guides/01%20Getting%20Started)
   [![image](https://discord.com/api/guilds/789032594456576001/embed.png)](https://discord.gg/interactions)

</div>

## A Feature-rich Discord Bot Framework for Python

A highly extensible, easy to use, and feature complete framework for Discord.

`interactions.py` is the culmination of years of experience with Discord's APIs and bot development. This framework has been built from the ground up with community feedback and suggestions in mind. Our framework provides a modern and intuitive set of language bindings for easy interaction with Discord.

## Key Features
interactions.py offers a wide range of features for building Python-powered Discord bots and web applications alike:
- ✅ 100% coverage of the Discord API
- ✅ Dynamic cache with TTL support
- ✅ Modern and Pythonic API for easy interaction with Discord
- ✅ Proper rate-limit handling
- ✅ Feature parity with most other Discord API wrappers
- ✅ Fully automated command synchronisation

In addition to core functionality, `interactions.py` provides a range of optional extensions, allowing you to further customize your bot and add new features with ease.

## Extensibility

So the base library doesn't do what you want? No problem! With builtin extensions, you are able to extend the functionality of the library. And if none of those pique your interest, there are a myriad of other extension libraries available.

Just type `bot.load_extension("extension")`

<details>
    <summary>Extensions</summary>

   ### Prefixed Commands

   Prefixed commands, message commands, or legacy commands.
   Whatever you want to call them, by default the `interactions.py` library will not handle these. But rest assured this extension will get you going

  - ✅ Automatic command registration
  - ✅ Annotation support

  ### Debug Extension

  A fully featured debug and utilities suite to help you get your bots made

  ### Jurigged

  A hot reloading extension allowing you to automagically update your bot without reboots

  ### Sentry

  Integrates Sentry.io error tracking into your bot with a single line

  ### Console

  Adds `aiomonitor` support with enables cli commands over a web interface

  ### Paginators

  Easily create multi-page embeds without having to implement the UX

</details>

## Where do I start?

Getting started with `interactions.py` is easy! Simply install it via `pip` and start building your Discord application in Python:

`pip install -U discord-py-interactions`
```python
import interactions

bot = interactions.Client()

@interactions.listen()
async def on_startup():
    print("Bot is ready!")

bot.start("token")
```

With `interactions.py`, you can quickly and easily build complex Discord applications with Python. Check out our [guides](https://interactions-py.github.io/interactions.py/Guides/01%20Getting%20Started) for more information. Or join our [discord](https://discord.gg/interactions).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/interactions-py/interactions.py",
    "name": "discord-py-interactions",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "LordOfPolls",
    "author_email": "dev@lordofpolls.com",
    "download_url": "https://files.pythonhosted.org/packages/9d/57/50f7eb5a6b6ef618f07e81261ccb080a2eee60a954fabfc9af0d53388cce/discord_py_interactions-5.12.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n   # Interactions.py\n   <br>\n\n   ![](https://img.shields.io/pypi/v/discord-py-interactions.svg?label=Version&logo=pypi)\n   ![](https://img.shields.io/badge/Python-3.10+-1081c1?logo=python)\n   [![](https://img.shields.io/pypi/dm/discord-py-slash-command.svg?logo=python&label=Downloads)](https://pypi.org/project/discord-py-interactions/)\n\n   [![](https://img.shields.io/badge/Code%20Style-black-000000.svg)](https://github.com/psf/black)\n   [![License](https://img.shields.io/badge/License-MIT-blue)](https://github.com/interactions-py/interactions.py/blob/stable/LICENSE)\n\n   [![](https://img.shields.io/badge/Docs-latest-x?logo=readthedocs)](https://interactions-py.github.io/interactions.py/)\n   [![](https://img.shields.io/badge/Guides-latest-x?logo=readthedocs)](https://interactions-py.github.io/interactions.py/Guides/01%20Getting%20Started)\n   [![image](https://discord.com/api/guilds/789032594456576001/embed.png)](https://discord.gg/interactions)\n\n</div>\n\n## A Feature-rich Discord Bot Framework for Python\n\nA highly extensible, easy to use, and feature complete framework for Discord.\n\n`interactions.py` is the culmination of years of experience with Discord's APIs and bot development. This framework has been built from the ground up with community feedback and suggestions in mind. Our framework provides a modern and intuitive set of language bindings for easy interaction with Discord.\n\n## Key Features\ninteractions.py offers a wide range of features for building Python-powered Discord bots and web applications alike:\n- \u2705 100% coverage of the Discord API\n- \u2705 Dynamic cache with TTL support\n- \u2705 Modern and Pythonic API for easy interaction with Discord\n- \u2705 Proper rate-limit handling\n- \u2705 Feature parity with most other Discord API wrappers\n- \u2705 Fully automated command synchronisation\n\nIn addition to core functionality, `interactions.py` provides a range of optional extensions, allowing you to further customize your bot and add new features with ease.\n\n## Extensibility\n\nSo the base library doesn't do what you want? No problem! With builtin extensions, you are able to extend the functionality of the library. And if none of those pique your interest, there are a myriad of other extension libraries available.\n\nJust type `bot.load_extension(\"extension\")`\n\n<details>\n    <summary>Extensions</summary>\n\n   ### Prefixed Commands\n\n   Prefixed commands, message commands, or legacy commands.\n   Whatever you want to call them, by default the `interactions.py` library will not handle these. But rest assured this extension will get you going\n\n  - \u2705 Automatic command registration\n  - \u2705 Annotation support\n\n  ### Debug Extension\n\n  A fully featured debug and utilities suite to help you get your bots made\n\n  ### Jurigged\n\n  A hot reloading extension allowing you to automagically update your bot without reboots\n\n  ### Sentry\n\n  Integrates Sentry.io error tracking into your bot with a single line\n\n  ### Console\n\n  Adds `aiomonitor` support with enables cli commands over a web interface\n\n  ### Paginators\n\n  Easily create multi-page embeds without having to implement the UX\n\n</details>\n\n## Where do I start?\n\nGetting started with `interactions.py` is easy! Simply install it via `pip` and start building your Discord application in Python:\n\n`pip install -U discord-py-interactions`\n```python\nimport interactions\n\nbot = interactions.Client()\n\n@interactions.listen()\nasync def on_startup():\n    print(\"Bot is ready!\")\n\nbot.start(\"token\")\n```\n\nWith `interactions.py`, you can quickly and easily build complex Discord applications with Python. Check out our [guides](https://interactions-py.github.io/interactions.py/Guides/01%20Getting%20Started) for more information. Or join our [discord](https://discord.gg/interactions).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Easy, simple, scalable and modular: a Python API wrapper for interactions.",
    "version": "5.12.0",
    "project_urls": {
        "Discord": "https://discord.gg/KkgMBVuEkx",
        "Documentation": "https://interactions-py.github.io/interactions.py/",
        "Homepage": "https://github.com/interactions-py/interactions.py"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dd0ad7bc120c5c93e75e3c8cf234f20691ef072a0871af1d9657af30805b7d2",
                "md5": "12fe7d861e12e5a2c5b4ec1590ffbf75",
                "sha256": "77cf52831a014049109955855309eac30df301f7d5b96b07edf96d7f70722fd6"
            },
            "downloads": -1,
            "filename": "discord_py_interactions-5.12.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "12fe7d861e12e5a2c5b4ec1590ffbf75",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 861149,
            "upload_time": "2024-04-30T08:21:24",
            "upload_time_iso_8601": "2024-04-30T08:21:24.963463Z",
            "url": "https://files.pythonhosted.org/packages/9d/d0/ad7bc120c5c93e75e3c8cf234f20691ef072a0871af1d9657af30805b7d2/discord_py_interactions-5.12.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d5750f7eb5a6b6ef618f07e81261ccb080a2eee60a954fabfc9af0d53388cce",
                "md5": "3c614a61d11f01ea4f30f5d932d8c23d",
                "sha256": "5f61af956fcf5168679b5ea134a99601ee2e4804188c67aba4a4733de5a87ee3"
            },
            "downloads": -1,
            "filename": "discord_py_interactions-5.12.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3c614a61d11f01ea4f30f5d932d8c23d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 790621,
            "upload_time": "2024-04-30T08:21:27",
            "upload_time_iso_8601": "2024-04-30T08:21:27.322873Z",
            "url": "https://files.pythonhosted.org/packages/9d/57/50f7eb5a6b6ef618f07e81261ccb080a2eee60a954fabfc9af0d53388cce/discord_py_interactions-5.12.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 08:21:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "interactions-py",
    "github_project": "interactions.py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "aiohttp",
            "specs": []
        },
        {
            "name": "attrs",
            "specs": [
                [
                    ">=",
                    "22.1"
                ]
            ]
        },
        {
            "name": "croniter",
            "specs": []
        },
        {
            "name": "discord-typings",
            "specs": [
                [
                    ">=",
                    "0.5.1"
                ]
            ]
        },
        {
            "name": "emoji",
            "specs": []
        },
        {
            "name": "tomli",
            "specs": []
        }
    ],
    "lcname": "discord-py-interactions"
}
        
Elapsed time: 0.24911s