Adding all files

This commit is contained in:
2026-02-03 20:32:43 +02:00
parent 2588d10ba0
commit 77b70b600f
1457 changed files with 184865 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2015-2021 Rapptz
Copyright (c) 2021-present Disnake Development
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,166 @@
Metadata-Version: 2.1
Name: disnake
Version: 2.11.0
Summary: A Python wrapper for the Discord API
Author: Disnake Development
License: MIT
Project-URL: Changelog, https://docs.disnake.dev/page/whats_new.html
Project-URL: Documentation, https://docs.disnake.dev/
Project-URL: Repository, https://github.com/DisnakeDev/disnake
Keywords: disnake,discord,discord api
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp <4.0,>=3.7.0
Requires-Dist: typing-extensions >=4.1
Provides-Extra: docs
Requires-Dist: sphinx ==7.0.1 ; extra == 'docs'
Requires-Dist: sphinxcontrib-trio ~=1.1.2 ; extra == 'docs'
Requires-Dist: sphinx-hoverxref ==1.3.0 ; extra == 'docs'
Requires-Dist: sphinx-autobuild ~=2021.3 ; extra == 'docs'
Requires-Dist: sphinxcontrib-towncrier ==0.3.2a0 ; extra == 'docs'
Requires-Dist: towncrier ==23.6.0 ; extra == 'docs'
Requires-Dist: sphinx-notfound-page ==0.8.3 ; extra == 'docs'
Requires-Dist: sphinxext-opengraph ==0.9.1 ; extra == 'docs'
Provides-Extra: speed
Requires-Dist: orjson ~=3.6 ; extra == 'speed'
Requires-Dist: aiodns >=1.1 ; extra == 'speed'
Requires-Dist: Brotli ; extra == 'speed'
Requires-Dist: cchardet ; (python_version < "3.10") and extra == 'speed'
Provides-Extra: voice
Requires-Dist: PyNaCl <1.6,>=1.5.0 ; extra == 'voice'
Requires-Dist: audioop-lts ==0.2.1 ; (python_version >= "3.13") and extra == 'voice'
<!-- SPDX-License-Identifier: MIT -->
[![Disnake Banner](https://raw.githubusercontent.com/DisnakeDev/disnake/master/assets/banner.png)](https://disnake.dev/)
disnake
=======
<p align="center">
<img src="https://img.shields.io/github/actions/workflow/status/DisnakeDev/disnake/lint-test.yml?branch=master&style=flat-square"></img>
<a href="https://discord.gg/disnake"><img src="https://img.shields.io/discord/808030843078836254?style=flat-square&color=5865f2&logo=discord&logoColor=ffffff&label=discord" alt="Discord server invite" /></a>
<a href="https://pypi.org/project/disnake/"><img src="https://img.shields.io/pypi/v/disnake.svg?style=flat-square" alt="PyPI version info" /></a>
<a href="https://pypi.org/project/disnake/"><img src="https://img.shields.io/pypi/pyversions/disnake.svg?style=flat-square" alt="PyPI supported Python versions" /></a>
<a href="https://github.com/DisnakeDev/disnake/commits"><img src="https://img.shields.io/github/commit-activity/w/DisnakeDev/disnake.svg?style=flat-square" alt="Commit activity" /></a>
</p>
A modern, easy to use, feature-rich, and async-ready API wrapper for Discord written in Python.
Key Features
------------
- Proper rate limit handling.
- Type-safety measures.
- [FastAPI](https://fastapi.tiangolo.com/)-like slash command syntax.
<sup>The syntax and structure of `discord.py 2.0` is preserved.</sup>
Installing
----------
**Python 3.8 or higher is required.**
To install the library without full voice support, you can just run the
following command:
``` sh
# Linux/macOS
python3 -m pip install -U disnake
# Windows
py -3 -m pip install -U disnake
```
Installing `disnake` with full voice support requires you to replace `disnake` here, with `disnake[voice]`. To learn more about voice support (or installing the development version), please visit [this section of our guide](https://guide.disnake.dev/prerequisites/installing-disnake/).
(You can optionally install [PyNaCl](https://pypi.org/project/PyNaCl/) for voice support.)
Note that voice support on Linux requires installation of `libffi-dev` and `python-dev` packages, via your preferred package manager (e.g. `apt`, `dnf`, etc.) before running the following commands.
Versioning
----------
This project does **not** quite follow semantic versioning; for more details, see [version guarantees](https://docs.disnake.dev/en/latest/version_guarantees.html).
To be on the safe side and avoid unexpected breaking changes, pin the dependency to a minor version (e.g. `disnake==a.b.*` or `disnake~=a.b.c`) or an exact version (e.g. `disnake==a.b.c`).
Quick Example
-------------
### Slash Commands Example
``` py
import disnake
from disnake.ext import commands
bot = commands.InteractionBot(test_guilds=[12345])
@bot.slash_command()
async def ping(inter):
await inter.response.send_message("Pong!")
bot.run("BOT_TOKEN")
```
### Context Menus Example
``` py
import disnake
from disnake.ext import commands
bot = commands.InteractionBot(test_guilds=[12345])
@bot.user_command()
async def avatar(inter, user):
embed = disnake.Embed(title=str(user))
embed.set_image(url=user.display_avatar.url)
await inter.response.send_message(embed=embed)
bot.run("BOT_TOKEN")
```
### Prefix Commands Example
``` py
import disnake
from disnake.ext import commands
bot = commands.Bot(command_prefix=commands.when_mentioned)
@bot.command()
async def ping(ctx):
await ctx.send("Pong!")
bot.run("BOT_TOKEN")
```
You can find more examples in the [examples directory](https://github.com/DisnakeDev/disnake/tree/master/examples).
<br>
<p align="center">
<a href="https://docs.disnake.dev/">Documentation</a>
<a href="https://guide.disnake.dev/">Guide</a>
<a href="https://discord.gg/disnake">Discord Server</a>
<a href="https://discord.gg/discord-developers">Discord Developers</a>
</p>
<br>

View File

@@ -0,0 +1,323 @@
disnake-2.11.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
disnake-2.11.0.dist-info/LICENSE,sha256=pB25mQJG0UEDi1ute6I2vSZKTQCrxesdN1zkrSX7Jx4,1125
disnake-2.11.0.dist-info/METADATA,sha256=SzkwCXrBlkMOoKOJGyHM06441OmwN2oztYb_cG9KIBc,6055
disnake-2.11.0.dist-info/RECORD,,
disnake-2.11.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
disnake-2.11.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
disnake-2.11.0.dist-info/top_level.txt,sha256=bE9MjBh6vntNyVUSzAkqcDtaUBkeY3v6we6_-Yh_eBc,8
disnake/__init__.py,sha256=26GEetqDhPIbvs3dFv76GWKTzkMCVuIUjpzfY7wM0rk,2283
disnake/__main__.py,sha256=UoLsHUGwsMH6kMSSPDx1CcyCI73rrN14QLzJ8hq-KJI,11935
disnake/__pycache__/__init__.cpython-314.pyc,,
disnake/__pycache__/__main__.cpython-314.pyc,,
disnake/__pycache__/abc.cpython-314.pyc,,
disnake/__pycache__/activity.cpython-314.pyc,,
disnake/__pycache__/app_commands.cpython-314.pyc,,
disnake/__pycache__/appinfo.cpython-314.pyc,,
disnake/__pycache__/application_role_connection.cpython-314.pyc,,
disnake/__pycache__/asset.cpython-314.pyc,,
disnake/__pycache__/audit_logs.cpython-314.pyc,,
disnake/__pycache__/automod.cpython-314.pyc,,
disnake/__pycache__/backoff.cpython-314.pyc,,
disnake/__pycache__/bans.cpython-314.pyc,,
disnake/__pycache__/channel.cpython-314.pyc,,
disnake/__pycache__/client.cpython-314.pyc,,
disnake/__pycache__/colour.cpython-314.pyc,,
disnake/__pycache__/components.cpython-314.pyc,,
disnake/__pycache__/context_managers.cpython-314.pyc,,
disnake/__pycache__/custom_warnings.cpython-314.pyc,,
disnake/__pycache__/embeds.cpython-314.pyc,,
disnake/__pycache__/emoji.cpython-314.pyc,,
disnake/__pycache__/entitlement.cpython-314.pyc,,
disnake/__pycache__/enums.cpython-314.pyc,,
disnake/__pycache__/errors.cpython-314.pyc,,
disnake/__pycache__/file.cpython-314.pyc,,
disnake/__pycache__/flags.cpython-314.pyc,,
disnake/__pycache__/gateway.cpython-314.pyc,,
disnake/__pycache__/guild.cpython-314.pyc,,
disnake/__pycache__/guild_preview.cpython-314.pyc,,
disnake/__pycache__/guild_scheduled_event.cpython-314.pyc,,
disnake/__pycache__/http.cpython-314.pyc,,
disnake/__pycache__/i18n.cpython-314.pyc,,
disnake/__pycache__/integrations.cpython-314.pyc,,
disnake/__pycache__/invite.cpython-314.pyc,,
disnake/__pycache__/iterators.cpython-314.pyc,,
disnake/__pycache__/member.cpython-314.pyc,,
disnake/__pycache__/mentions.cpython-314.pyc,,
disnake/__pycache__/message.cpython-314.pyc,,
disnake/__pycache__/mixins.cpython-314.pyc,,
disnake/__pycache__/object.cpython-314.pyc,,
disnake/__pycache__/oggparse.cpython-314.pyc,,
disnake/__pycache__/onboarding.cpython-314.pyc,,
disnake/__pycache__/opus.cpython-314.pyc,,
disnake/__pycache__/partial_emoji.cpython-314.pyc,,
disnake/__pycache__/permissions.cpython-314.pyc,,
disnake/__pycache__/player.cpython-314.pyc,,
disnake/__pycache__/poll.cpython-314.pyc,,
disnake/__pycache__/raw_models.cpython-314.pyc,,
disnake/__pycache__/reaction.cpython-314.pyc,,
disnake/__pycache__/role.cpython-314.pyc,,
disnake/__pycache__/shard.cpython-314.pyc,,
disnake/__pycache__/sku.cpython-314.pyc,,
disnake/__pycache__/soundboard.cpython-314.pyc,,
disnake/__pycache__/stage_instance.cpython-314.pyc,,
disnake/__pycache__/state.cpython-314.pyc,,
disnake/__pycache__/sticker.cpython-314.pyc,,
disnake/__pycache__/subscription.cpython-314.pyc,,
disnake/__pycache__/team.cpython-314.pyc,,
disnake/__pycache__/template.cpython-314.pyc,,
disnake/__pycache__/threads.cpython-314.pyc,,
disnake/__pycache__/user.cpython-314.pyc,,
disnake/__pycache__/utils.cpython-314.pyc,,
disnake/__pycache__/voice_client.cpython-314.pyc,,
disnake/__pycache__/voice_region.cpython-314.pyc,,
disnake/__pycache__/welcome_screen.cpython-314.pyc,,
disnake/__pycache__/widget.cpython-314.pyc,,
disnake/abc.py,sha256=5hkiWX9Pt6xqS5EpoRRGbNxIOXNjm2DOaNbf8phXXv8,75643
disnake/activity.py,sha256=8Tl5DsqSY5UuIO6JT10gXyYpVx08amPG-RZqrU-Fl9o,29725
disnake/app_commands.py,sha256=v1sSF5qSZPBawZCIX7bxuCW9KWtPll6Ohhrv5ccTLY4,48313
disnake/appinfo.py,sha256=c7RxFmOcbiAhpP3b4PNxagbODyXpvntAp7P3f1YZArE,16424
disnake/application_role_connection.py,sha256=_l3L7FGtaK8oTj_tK3uAVqdGIfa76ADWFkYRiLBLYZ8,3819
disnake/asset.py,sha256=-ToJDicgXY_RnpapNcQqsVPm66fEHpQNpgNUY6jOVJU,16551
disnake/audit_logs.py,sha256=-cyUK9_9hk5rOfubZODitAtsy4Io6wvNqPRq-nkyRrw,33221
disnake/automod.py,sha256=lc4IRs0L_tInPQa3W5PQMukJdz49J_FQjBbyD2a8tR0,28843
disnake/backoff.py,sha256=Gz5IuKruTLkf3DinEVQi-P8ysfnfVUZnidVLCRF0wW0,2673
disnake/bans.py,sha256=huADUjXxOnUF29sHOqMUrAXDv7hHl3UnVzc4iuuWA3g,407
disnake/bin/COPYING,sha256=AmeueVq3RMTg-cReJJRA_fLnXayMgE82BmsoZJv3Sq8,1487
disnake/bin/libopus-0.x64.dll,sha256=yE2oNujZJCGsMFhCz-WnJImO0J00DUaxKeIQvclEgTE,441856
disnake/bin/libopus-0.x86.dll,sha256=O1v-EpUPNQQ-110rb6kCyTbWelBxYL92NY1nx2wdveg,366080
disnake/channel.py,sha256=oD_gUaiDgl4q8E39UXjnSTnPXvzXplNFBuwkvUpgWRY,184689
disnake/client.py,sha256=v2a0_hdqg4Rc_LMVFzY-5rq-n5iHLfEw45zx8qPThHk,111517
disnake/colour.py,sha256=g2tdfk0dXr_24HfqX0DJLkhFKBjFLp7KGt4ELiN0gr8,10053
disnake/components.py,sha256=Z2h4soSpniFnN4lzA_ICjuL2IvsbyYkevPzAgdIsyeg,52391
disnake/context_managers.py,sha256=oJi13iHEgfHJFn-T8Ami04OsMSwhmERYdVix1pYicL8,1946
disnake/custom_warnings.py,sha256=NUOUbvK4LuHvdVx34aI1o47wX45m7kpy9FzCMUhoy7I,713
disnake/embeds.py,sha256=apYwB8AA95iQbRMydRE-w_HPGwwnY263ojLvw_kllL4,30225
disnake/emoji.py,sha256=_dKxHr3VkQhtkg0jCHY_NmhU1sgRl4IwMkXDPKzUdN4,8030
disnake/entitlement.py,sha256=YiT_JH8a9Op8cv6gZwMUlkEodCietGVJgvf5K8frlqw,6197
disnake/enums.py,sha256=gWSWNdLsOquuTsqpaU8t1SWJQItbGCl-ZkcZDAYww3Q,81598
disnake/errors.py,sha256=H3HDUZm1HFTrqkf9G5TNUnb0y1ViJ9unlMPHTB2V1So,13624
disnake/ext/commands/__init__.py,sha256=l8oiYcfj2yPKzkipyKUQ6LTr_QA0_EsFgs4K9y09TRs,615
disnake/ext/commands/__pycache__/__init__.cpython-314.pyc,,
disnake/ext/commands/__pycache__/_types.cpython-314.pyc,,
disnake/ext/commands/__pycache__/base_core.cpython-314.pyc,,
disnake/ext/commands/__pycache__/bot.cpython-314.pyc,,
disnake/ext/commands/__pycache__/bot_base.cpython-314.pyc,,
disnake/ext/commands/__pycache__/cog.cpython-314.pyc,,
disnake/ext/commands/__pycache__/common_bot_base.cpython-314.pyc,,
disnake/ext/commands/__pycache__/context.cpython-314.pyc,,
disnake/ext/commands/__pycache__/converter.cpython-314.pyc,,
disnake/ext/commands/__pycache__/cooldowns.cpython-314.pyc,,
disnake/ext/commands/__pycache__/core.cpython-314.pyc,,
disnake/ext/commands/__pycache__/ctx_menus_core.cpython-314.pyc,,
disnake/ext/commands/__pycache__/custom_warnings.cpython-314.pyc,,
disnake/ext/commands/__pycache__/errors.cpython-314.pyc,,
disnake/ext/commands/__pycache__/flag_converter.cpython-314.pyc,,
disnake/ext/commands/__pycache__/flags.cpython-314.pyc,,
disnake/ext/commands/__pycache__/help.cpython-314.pyc,,
disnake/ext/commands/__pycache__/interaction_bot_base.cpython-314.pyc,,
disnake/ext/commands/__pycache__/params.cpython-314.pyc,,
disnake/ext/commands/__pycache__/slash_core.cpython-314.pyc,,
disnake/ext/commands/__pycache__/view.cpython-314.pyc,,
disnake/ext/commands/_types.py,sha256=9148BI6QAhih8m-W_WLCbDKefDlgprCrHDbBCAq6vl4,1137
disnake/ext/commands/base_core.py,sha256=6TrC3E4tvkOe4u9t-ZJxQax4HK_1d9gLXTK2uetq0hk,33778
disnake/ext/commands/bot.py,sha256=lRGr_COvVVc-4dZee649Q_-rRRvQO6fVQo3x6ZPM9Ws,24325
disnake/ext/commands/bot_base.py,sha256=aE9R9XbjDNL2JptmVPMjiHhOBe6Q0BNAtTsb2DiHDKg,20608
disnake/ext/commands/cog.py,sha256=XxP3IC83xMSPh0nsxLRktuEuva5y7rjI3yiMLCBSaOY,34366
disnake/ext/commands/common_bot_base.py,sha256=XJLAPhzVnvTH5S9oY6uWBhJsrh9sZMz-GVkseBqdZiM,18897
disnake/ext/commands/context.py,sha256=Ity9t0Xr9IC2Qb5FlTTNjj-nmAyBbvSvHQms43HbYOY,13885
disnake/ext/commands/converter.py,sha256=HZtsDP0zpzBxj9VK-VeUmogsJSEBMBkjUf2HaU4STFM,45840
disnake/ext/commands/cooldowns.py,sha256=eRlaf3BNTb8QiRIj69nIONXSlRUwznKJ85IMiFWd1lw,12256
disnake/ext/commands/core.py,sha256=ahqrX0-n5MH0I4BzWZ_PdfHygw9TaFxToaMG1cALpR0,89590
disnake/ext/commands/ctx_menus_core.py,sha256=oQkhkNVMftwJHHFweZeulv4W9-A9OFr6mBG0lUJ5o1E,17483
disnake/ext/commands/custom_warnings.py,sha256=6jYqmM-jRcOxCp2_rESu0uhug1UL4MTiEDoMaihnetQ,238
disnake/ext/commands/errors.py,sha256=IR-OtCWJu6V61pXrqLiUpUjftqZEhado0D9qglKWhkg,32091
disnake/ext/commands/flag_converter.py,sha256=_F3Gfae3FZcdU2gVs3InMriFN2EoE_yxgZu64hRx0b0,20518
disnake/ext/commands/flags.py,sha256=4T8xt10-egXmjTdrUPw9Mk_0ghJ0B2ctLu9xlAYYVs0,6165
disnake/ext/commands/help.py,sha256=0bQaR2sXAh0_d8lsO_tbo5_dyRC-0fWuhgUVWw8mwzQ,50087
disnake/ext/commands/interaction_bot_base.py,sha256=4Zv6desdn94h1oCsEOgokHAQe-oU3Hs4ZKySjLbhrE0,57767
disnake/ext/commands/params.py,sha256=pQVtLzoF3yVNZ6w4CxCmjVW4hRiBvCzmPPC7ByItzxU,50453
disnake/ext/commands/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
disnake/ext/commands/slash_core.py,sha256=2e2wIuSoe3el9OUYDKd1kqlj4S7FCzz8L_qtk-y3okA,33404
disnake/ext/commands/view.py,sha256=aT3jLx4qNndq-o_lpwZ0gVlDOxH-owqSxxFheGmr1fc,5189
disnake/ext/mypy_plugin/__init__.py,sha256=UURTjw-7rw9FJWzZ457cDH3pwVTVSeWn-6wYcTQED7I,287
disnake/ext/mypy_plugin/__pycache__/__init__.cpython-314.pyc,,
disnake/ext/tasks/__init__.py,sha256=8ZWaKqmNXN1go1Ib9aoTyOQ6d6t4e0PqDGU2Ru94TUU,26899
disnake/ext/tasks/__pycache__/__init__.cpython-314.pyc,,
disnake/ext/tasks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
disnake/file.py,sha256=7fEspZvm9p-kLtMqbftyMnmUr23y-RRpPpJ8jdutBf8,4284
disnake/flags.py,sha256=27gw91p6WJYeA4aE1I3DmIj5vWZznlBlo9phYzOr8Ow,97816
disnake/gateway.py,sha256=uAC4zndQ574tlRh-IZKqzOgtpAe1fT1OS_rAHg1DEt8,38992
disnake/guild.py,sha256=2_bXozBqX8lAU2yb8522rFuyoKv3QKa37z8g7QHNc0Y,207933
disnake/guild_preview.py,sha256=dBRKjyDNQ6tPZ5p9nxxz4BeUfq57J0yWCOJlOzHox7g,3973
disnake/guild_scheduled_event.py,sha256=VWSpK0hWMtm_cgdBG_MXt1I5918XEEdWrZiJyCHl-Uw,25568
disnake/http.py,sha256=cakX7Xl32fEQMrfTZv68JQt4bBHNog5vpnajvNLJ_FA,102195
disnake/i18n.py,sha256=CRtXqeNPRti0b7ZsbbmPaQi6Msj2cUUvI0ia12Sw4xQ,13345
disnake/integrations.py,sha256=PXivrG5GvL1VInwlee3xwR5KpDTGC5avxYrHhr_04uY,13154
disnake/interactions/__init__.py,sha256=1HkQQld5WCJatTnZv70pwFxl4AF3yCI5Nza2VN98yjs,336
disnake/interactions/__pycache__/__init__.cpython-314.pyc,,
disnake/interactions/__pycache__/application_command.cpython-314.pyc,,
disnake/interactions/__pycache__/base.cpython-314.pyc,,
disnake/interactions/__pycache__/message.cpython-314.pyc,,
disnake/interactions/__pycache__/modal.cpython-314.pyc,,
disnake/interactions/application_command.py,sha256=Po5OBdZ1HvrXiBI0XvUG3-v6l2_tA3hEGxO-lLxUMaY,14978
disnake/interactions/base.py,sha256=0_8tXbMXfPLtBU2mwTQQ43B839HtbBiTL1Pr1PFgg_U,82515
disnake/interactions/message.py,sha256=U_dyFZvynSdvlMSZ55sszlnKx11PO1jGE__2Esxvi7k,9187
disnake/interactions/modal.py,sha256=_Mlf8osLtQliqQ7mwl1Fax5h_PUa6q_SV7ebhfDJr7Q,11803
disnake/invite.py,sha256=jk5Fuo84PuDRR4if_tGLHCRO5_zp0cXmmksC4ZWn6OQ,22221
disnake/iterators.py,sha256=OhMuEjD9cik105jNKkblGmoxNSu8ZCYNzPDSF2AT-4Q,49633
disnake/member.py,sha256=Lu0XldnCjIAj-x_tJhdcKkPK0_KWIVAYJ68I-3n-g7s,46830
disnake/mentions.py,sha256=Wx-0mHBvuYnxIx91jy-dDcAl0utELLHe4dTozv4nENs,5802
disnake/message.py,sha256=-r7ZEA4gwtwd05QzBcceinbx9MXNp7Nol7dAuSX6Fxs,113161
disnake/mixins.py,sha256=UNOGjed1V1kCpewE6WL6nzqthkAtPDvgMiWDBHVpEvw,536
disnake/object.py,sha256=AFFX7NLTKjTK0F8aKV1KiYPPw24oRBfcrl374Nt-aTU,1878
disnake/oggparse.py,sha256=DmgTYYvEAWGOuDycbmkqqh9fpAA5dwJTDSgn8Kqjbus,2700
disnake/onboarding.py,sha256=s8Pnj6eice9we-xhOjI4m-8Qy4MGxP55uS18T8FgzCo,6638
disnake/opus.py,sha256=3Pu2Wf3kzm6RNdazbB8Z8D2CygTglZl6NYJYEqI5Inc,14582
disnake/partial_emoji.py,sha256=s3YmLTjcO5zsL7pknDk-drgpLhTyKMqOdWJI8XeDVYE,7331
disnake/permissions.py,sha256=2cn7i1dWOtnZnrrICcD1DGub7ZV0lX3hDngOXtj2kM4,49159
disnake/player.py,sha256=Myu1cElwqzXL1PvSzjq3OxIDIZlL_S1rzA0TRLhelxA,27230
disnake/poll.py,sha256=ulUm7zjXmHDHK-xSAYEDQctb8zhtn0WfAl1L_R7Nzuk,14412
disnake/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
disnake/raw_models.py,sha256=OUnvadi7KYZhZA7CnfW-JQArxd5mNsinS39FlzbpLDQ,19004
disnake/reaction.py,sha256=B1e__Pi8YfviIviOJKVxC34gp61bA81Jq-V9fXlLc6Q,6223
disnake/role.py,sha256=-YHR7Bu6pal7HxHjTDgu6O93PxO0sJeDik2W99eXr0k,23031
disnake/shard.py,sha256=OY18AJcHJWPTVzpVUe2LBFSmgZN3q8wcFroGLwvMIow,22025
disnake/sku.py,sha256=yUPXely3MI4qx5yPcGC0e9wQ2-dEY_kGabih3yuEhxI,4617
disnake/soundboard.py,sha256=ifNGNDpC6qKX4BjULk4fXHClwL9Tu50NRAtvZRdpPes,9470
disnake/stage_instance.py,sha256=454hCHmcjzorYKLXUQJd22bc0m0e_Ckpe_twjUa1kHE,7089
disnake/state.py,sha256=szqzbQl4l8m8BA1pIQCashiZep9Ez3A9uoWVawwwaJ8,101383
disnake/sticker.py,sha256=3YWBypTT635P10crxOLiRxLeDEIk0a1RncuFDHqsvas,15461
disnake/subscription.py,sha256=qS0xrfmDEv-s4CCE3ePVaokGKN-uLE8Sun52vh8r1wg,4282
disnake/team.py,sha256=76SYcIr05GmvzW09ywxGCZ2qqPy1SJdSSoXg2PDwVDg,4506
disnake/template.py,sha256=CXtfCIUBrAtgrFR_Nd-ojpkYiEGv2xrNJNTRPZZCLLU,9018
disnake/threads.py,sha256=TgX9NzlbzFCywrVtwb8IRFXeCEobkJTUKug-b8cVEQc,41899
disnake/types/__init__.py,sha256=2uUSugjWcrSM5fSdmOOPmMjeo0KqpaokqcdWIXI-r2o,211
disnake/types/__pycache__/__init__.cpython-314.pyc,,
disnake/types/__pycache__/activity.cpython-314.pyc,,
disnake/types/__pycache__/appinfo.cpython-314.pyc,,
disnake/types/__pycache__/application_role_connection.cpython-314.pyc,,
disnake/types/__pycache__/audit_log.cpython-314.pyc,,
disnake/types/__pycache__/automod.cpython-314.pyc,,
disnake/types/__pycache__/channel.cpython-314.pyc,,
disnake/types/__pycache__/components.cpython-314.pyc,,
disnake/types/__pycache__/embed.cpython-314.pyc,,
disnake/types/__pycache__/emoji.cpython-314.pyc,,
disnake/types/__pycache__/entitlement.cpython-314.pyc,,
disnake/types/__pycache__/gateway.cpython-314.pyc,,
disnake/types/__pycache__/guild.cpython-314.pyc,,
disnake/types/__pycache__/guild_scheduled_event.cpython-314.pyc,,
disnake/types/__pycache__/i18n.cpython-314.pyc,,
disnake/types/__pycache__/integration.cpython-314.pyc,,
disnake/types/__pycache__/interactions.cpython-314.pyc,,
disnake/types/__pycache__/invite.cpython-314.pyc,,
disnake/types/__pycache__/member.cpython-314.pyc,,
disnake/types/__pycache__/message.cpython-314.pyc,,
disnake/types/__pycache__/onboarding.cpython-314.pyc,,
disnake/types/__pycache__/poll.cpython-314.pyc,,
disnake/types/__pycache__/role.cpython-314.pyc,,
disnake/types/__pycache__/sku.cpython-314.pyc,,
disnake/types/__pycache__/snowflake.cpython-314.pyc,,
disnake/types/__pycache__/soundboard.cpython-314.pyc,,
disnake/types/__pycache__/sticker.cpython-314.pyc,,
disnake/types/__pycache__/subscription.cpython-314.pyc,,
disnake/types/__pycache__/team.cpython-314.pyc,,
disnake/types/__pycache__/template.cpython-314.pyc,,
disnake/types/__pycache__/threads.cpython-314.pyc,,
disnake/types/__pycache__/user.cpython-314.pyc,,
disnake/types/__pycache__/voice.cpython-314.pyc,,
disnake/types/__pycache__/webhook.cpython-314.pyc,,
disnake/types/__pycache__/welcome_screen.cpython-314.pyc,,
disnake/types/__pycache__/widget.cpython-314.pyc,,
disnake/types/activity.py,sha256=lf8wAv5yRPNAj0OcVhmDvH7kP22XsIPX5NAV5a0_R-4,2379
disnake/types/appinfo.py,sha256=cxNRKzQUxpoq7PIYRjh5FNNC3GrK2U5pY4jz9qgV-SM,2242
disnake/types/application_role_connection.py,sha256=4dQofxQxlxZ5dZ1CJiOTGaHpt-6rNS1BwSCYt9luSoM,487
disnake/types/audit_log.py,sha256=0TskvkOWgHhcIEnwge0VFBpCpmv-SPbNXeLjnwZj65s,8138
disnake/types/automod.py,sha256=QfbxsaCSw1nQt95uQxLqR-MVvfaGL3JSKmxR9F8SpLU,2048
disnake/types/channel.py,sha256=0ybFG8Hq-jylHFZGWbhKyKvvA2M560rBYAii3uHVJXs,5073
disnake/types/components.py,sha256=Wj5R-xBTPAFGg8VWVIhKUr5ASbErdddE9LCFTmU3a1A,6189
disnake/types/embed.py,sha256=edW6G_d--WF5NjKG7wjdzh5LiE0uAQgWZBCXoxGwXJI,1325
disnake/types/emoji.py,sha256=5_bUUR5Mpo8ymHzz__PMt9JXpx0JBOE_7Vo1vtAw5Eg,471
disnake/types/entitlement.py,sha256=ur1XNhZrVCZ2eiaOHP8nFhZ5gaZ9_2J5XXvrnc0OtWg,511
disnake/types/gateway.py,sha256=pSaht7wRruaie2SldVbSvJ3ovm9qyC4bYXiYohyH03E,18336
disnake/types/guild.py,sha256=zUT0o_-ks6fwCIYgVHKcx8mEsm7rPTkgij3MOKCFUa4,6112
disnake/types/guild_scheduled_event.py,sha256=plWL-Wt7-xkleaKDP9OTWRwa3IUn3HN4Kymn4W2mmqo,1197
disnake/types/i18n.py,sha256=Fh3RUiQQ2qrT-YE7VSrwXMHvwCAAZAI4KuStp0Za5rY,91
disnake/types/integration.py,sha256=q58NmDOAYTZ6hyzkKNSy3O3iEcmxlMlXRM2mz-dSGPo,1336
disnake/types/interactions.py,sha256=I_BrGbSGtoAfyGDsqF3PrPsKmdC2hXWSe8jKkR_GKOg,13076
disnake/types/invite.py,sha256=WUNIcXn6Ls8MFJib4nmMpqWgDa1Gj94dMdypSGJ5FsI,1139
disnake/types/member.py,sha256=gPjiQxv0CiXe6-gL_icv6j97sn4NBmLMuVQS6KZUhXo,810
disnake/types/message.py,sha256=PYGB9R6yJArNB4fuUhtNlZmKfKTkPv1AhNLGEp8Xaic,4619
disnake/types/onboarding.py,sha256=-wmmCk2pnttrGIr8sJs_i1dlLmtYRKbCQ_fBqzZLfMs,739
disnake/types/poll.py,sha256=RynwFJPu6TMX9a5JNihE4zVsO52M1nlrxiRY_wtyf8E,1499
disnake/types/role.py,sha256=rgw3BDkhsEOhJ9aAVVqRFqxfo5RaOOUwpdVky9QdpnY,1047
disnake/types/sku.py,sha256=atbsktsPCUZRur5ZT8DNn3eXw-q5jZMmhq7A5AmVCiI,349
disnake/types/snowflake.py,sha256=JBz3KRVWtpMK0wwBH15Q_vyxi3mSqe29wrUuL_s6zSo,166
disnake/types/soundboard.py,sha256=R72zBUl2AFweZ89qUMO5P8tKl_IEMD9fSTm-Lzz1A0Y,699
disnake/types/sticker.py,sha256=pTrOfu31_sGMouOQA8gFCMuufh6GNLqQJyoNkdLILIY,1321
disnake/types/subscription.py,sha256=WPgpCxmDK5vtQSycAP8pD4jBfleRuySwkUtA_O9-liQ,611
disnake/types/team.py,sha256=sWTYjvw5DsEZh5uwkX2chtxKi0SYrT10CgbKV_PUcNs,566
disnake/types/template.py,sha256=JTaWUJT_yJm7os3-b2DHJQwB91qLCauK3yGlzR9Q87M,621
disnake/types/threads.py,sha256=7bLcv8SZbwsZ6fEc0IoRp_SqBv11SVYWlq9Qu7ejGrc,1862
disnake/types/user.py,sha256=BiGlTPrYrGet_wyY-6ArjsYiyvD_wyakW33js7jV1Po,1662
disnake/types/voice.py,sha256=4ClyjFK8qNp2yB5u8XbbzN6lIuffU4KEfzbdbsEO51w,1499
disnake/types/webhook.py,sha256=bCuw_KStykNplly6yBkhNtzQDPb2gGTMMdyCvpHz6Uw,927
disnake/types/welcome_screen.py,sha256=yKCgdQqNUhUoF9u0a2T4rulhVFj5e1gDcafiV15FbRs,413
disnake/types/widget.py,sha256=vV5nmUKnqlEl4KREqwwYa16_TrZ_5_Fd4NK6LHM6kJk,958
disnake/ui/__init__.py,sha256=Nqh8cT63wekgDQjYLZIWEJc2Lh8tVb4nIDMwiqbqWBI,569
disnake/ui/__pycache__/__init__.cpython-314.pyc,,
disnake/ui/__pycache__/_types.cpython-314.pyc,,
disnake/ui/__pycache__/action_row.cpython-314.pyc,,
disnake/ui/__pycache__/button.cpython-314.pyc,,
disnake/ui/__pycache__/container.cpython-314.pyc,,
disnake/ui/__pycache__/file.cpython-314.pyc,,
disnake/ui/__pycache__/item.cpython-314.pyc,,
disnake/ui/__pycache__/label.cpython-314.pyc,,
disnake/ui/__pycache__/media_gallery.cpython-314.pyc,,
disnake/ui/__pycache__/modal.cpython-314.pyc,,
disnake/ui/__pycache__/section.cpython-314.pyc,,
disnake/ui/__pycache__/separator.cpython-314.pyc,,
disnake/ui/__pycache__/text_display.cpython-314.pyc,,
disnake/ui/__pycache__/text_input.cpython-314.pyc,,
disnake/ui/__pycache__/thumbnail.cpython-314.pyc,,
disnake/ui/__pycache__/view.cpython-314.pyc,,
disnake/ui/_types.py,sha256=UXJ5p6VKFB2fu2oQkwwBaeSWtDQmhl15AsOJAmTcaZ8,2852
disnake/ui/action_row.py,sha256=I80Qb1MN9QSquq-Rw0l6kq1Yn93k-ilBdWQ05O-tedA,43039
disnake/ui/button.py,sha256=jJtbFjSsxsCQ9yUBJ1R2QQ9Iu9P6sR11bcl0hYY8jJE,12661
disnake/ui/container.py,sha256=PCk7-G3rOeUsNjagPHi_y2HoySJUlOffomhnHORzd5Y,4626
disnake/ui/file.py,sha256=XFd7UBloCpCwEr63zXPXyzbItztN-txG0fQFA8gIwrM,3850
disnake/ui/item.py,sha256=RjwbO3Ecf3DxEV8NicXqGpZvPjMf9svcnr-2zlDKNdI,7488
disnake/ui/label.py,sha256=PGrRhSohMhVi8tRWJYVsw5Nr33VpkBnVTaLpWTc_zh0,3089
disnake/ui/media_gallery.py,sha256=LWXcd7dJ1L0uUzQszZ6furdNb_QPDWSsjGUST1PBDGw,1893
disnake/ui/modal.py,sha256=iztdrtqpdpWV9D6almkm_HaqV1I6idjsAwlgfuHc6xs,11959
disnake/ui/section.py,sha256=x8HH4tRck_sOd2eE4MT5e9fiY0qiM3ia4YQfYDpgYbU,3312
disnake/ui/select/__init__.py,sha256=u-UbuxQIHD1o1vkQLOgIAO5OvkBgcIg3US8U5hdJOVA,592
disnake/ui/select/__pycache__/__init__.cpython-314.pyc,,
disnake/ui/select/__pycache__/base.cpython-314.pyc,,
disnake/ui/select/__pycache__/channel.cpython-314.pyc,,
disnake/ui/select/__pycache__/mentionable.cpython-314.pyc,,
disnake/ui/select/__pycache__/role.cpython-314.pyc,,
disnake/ui/select/__pycache__/string.cpython-314.pyc,,
disnake/ui/select/__pycache__/user.cpython-314.pyc,,
disnake/ui/select/base.py,sha256=NNEQyieT-iGSP1j5bbSu_b1ulC0c9yuwCm2RnThz8R0,9222
disnake/ui/select/channel.py,sha256=J90XL7f68sDrneRJM0y_auAPCsDycs2RBP7Nu8gzsA8,10945
disnake/ui/select/mentionable.py,sha256=zJbuMSuXu0e3C6TQnmHI-mmr3zt8_CrVrTus13wcS-Y,9619
disnake/ui/select/role.py,sha256=sxvnVgt3vXi9MSxh2B0gCNvPXrEUhuOHv-3DgXbWCzE,8741
disnake/ui/select/string.py,sha256=0f75Tz8C-GL-qplaBpNC5xOgsQkQW5TEQUmC6_zDE3A,12800
disnake/ui/select/user.py,sha256=f-FMgk2CQ8wXisD-ISNXXrvns0JJia3rRp8sNqUBaVw,8990
disnake/ui/separator.py,sha256=6UuKMVSHmLlwTeBlke6mhXJ6Tu-2dMjIVPpLqtS-hwo,2472
disnake/ui/text_display.py,sha256=GQlvmB0zLzSogXyI2_9DY_jMJepiKXNqAUoCjvKjIfc,1727
disnake/ui/text_input.py,sha256=-hbktrfBW-6swdR3kWys90cQLMGx5oGh__sO6YpSA2o,6057
disnake/ui/thumbnail.py,sha256=Z9ohJNVkC6ufptv-meTXFwNYBlaUPC22B3Mvieugwbk,3202
disnake/ui/view.py,sha256=vxOVcV8PjXvJHXxW__uihRsQcON3zG_Ybv2t-n-IF-s,19995
disnake/user.py,sha256=UzlXJMKq6LyVpPUgQUAzNsu17_Zj_saiwq7B8pG3yP8,22385
disnake/utils.py,sha256=Tmc5vMObi-V9B1zG1QU-KcsiRfY0KBHCacp8U2XXr4k,47549
disnake/voice_client.py,sha256=NP7XWj5zHUsVeAsKi4oTi2ak4nIMplUoW9zsXWsMGos,23423
disnake/voice_region.py,sha256=aDHPCCl7Bs0vYRM4sH8TxOZORopTCb24zz5VprgCGJQ,1823
disnake/webhook/__init__.py,sha256=KrX0V-TDkNr3V_OBdKbt3H-Egi3f8Z8_8jQ0M4Vt-cg,345
disnake/webhook/__pycache__/__init__.cpython-314.pyc,,
disnake/webhook/__pycache__/async_.cpython-314.pyc,,
disnake/webhook/__pycache__/sync.cpython-314.pyc,,
disnake/webhook/async_.py,sha256=AaWON8-EogNFBggQgOpC6wpP6YngS_2RofQ4J5luKsw,73730
disnake/webhook/sync.py,sha256=dQRyqZ63rmxJMaH_2mH1VaiWd8UU-DZXaf1zsn7K9V4,46781
disnake/welcome_screen.py,sha256=bUuQlP0Bd7Cqui0OYRlRwOdmxO5ynbT0J92mLr-ywCg,5870
disnake/widget.py,sha256=BARwP3MU4ZFJ2Mbg5y5yauntef0euzHHoiqCShMtzhk,14025

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: setuptools (75.3.2)
Root-Is-Purelib: true
Tag: py3-none-any