Voice et bot modif

This commit is contained in:
pi 2026-06-16 17:09:34 +00:00
parent 189d56026b
commit 7333a22bcd
10774 changed files with 634644 additions and 933308 deletions

View file

@ -0,0 +1,208 @@
Metadata-Version: 2.4
Name: discord.py
Version: 2.7.1
Summary: A Python wrapper for the Discord API
Author: Rapptz
License: The MIT License (MIT)
Copyright (c) 2015-present Rapptz
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.
Project-URL: Documentation, https://discordpy.readthedocs.io/en/latest/
Project-URL: Issue tracker, https://github.com/Rapptz/discord.py/issues
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: 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/x-rst
License-File: LICENSE
Requires-Dist: aiohttp<4,>=3.7.4
Requires-Dist: audioop-lts; python_version >= "3.13"
Provides-Extra: voice
Requires-Dist: PyNaCl<1.6,>=1.5.0; extra == "voice"
Requires-Dist: davey>=0.1.0; extra == "voice"
Provides-Extra: docs
Requires-Dist: sphinx==4.4.0; extra == "docs"
Requires-Dist: sphinxcontrib_trio==1.1.2; extra == "docs"
Requires-Dist: sphinxcontrib-websupport==1.2.4; extra == "docs"
Requires-Dist: sphinxcontrib-applehelp==1.0.4; extra == "docs"
Requires-Dist: sphinxcontrib-devhelp==1.0.2; extra == "docs"
Requires-Dist: sphinxcontrib-htmlhelp==2.0.1; extra == "docs"
Requires-Dist: sphinxcontrib-jsmath==1.0.1; extra == "docs"
Requires-Dist: sphinxcontrib-qthelp==1.0.3; extra == "docs"
Requires-Dist: sphinxcontrib-serializinghtml==1.1.5; extra == "docs"
Requires-Dist: typing-extensions<5,>=4.3; extra == "docs"
Requires-Dist: sphinx-inline-tabs==2023.4.21; extra == "docs"
Requires-Dist: imghdr-lts==1.0.0; python_version >= "3.13" and extra == "docs"
Provides-Extra: speed
Requires-Dist: orjson>=3.5.4; extra == "speed"
Requires-Dist: aiodns>=1.1; sys_platform != "win32" and extra == "speed"
Requires-Dist: Brotli; extra == "speed"
Requires-Dist: cchardet==2.1.7; python_version < "3.10" and extra == "speed"
Requires-Dist: zstandard>=0.23.0; python_version <= "3.13" and extra == "speed"
Provides-Extra: test
Requires-Dist: coverage[toml]; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-mock; extra == "test"
Requires-Dist: typing-extensions<5,>=4.3; extra == "test"
Requires-Dist: tzdata; sys_platform == "win32" and extra == "test"
Provides-Extra: dev
Requires-Dist: ruff==0.12; extra == "dev"
Requires-Dist: typing_extensions<5,>=4.3; extra == "dev"
Dynamic: license-file
discord.py
==========
.. image:: https://discord.com/api/guilds/336642139381301249/embed.png
:target: https://discord.gg/r3sSKJJ
:alt: Discord server invite
.. image:: https://img.shields.io/pypi/v/discord.py.svg
:target: https://pypi.python.org/pypi/discord.py
:alt: PyPI version info
.. image:: https://img.shields.io/pypi/pyversions/discord.py.svg
:target: https://pypi.python.org/pypi/discord.py
:alt: PyPI supported Python versions
A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.
Key Features
-------------
- Modern Pythonic API using ``async`` and ``await``.
- Proper rate limit handling.
- Optimised in both speed and memory.
Installing
----------
**Python 3.8 or higher is required**
To install the library without full voice support, you can just run the following command:
.. note::
A `Virtual Environment <https://docs.python.org/3/library/venv.html>`__ is recommended to install
the library, especially on Linux where the system Python is externally managed and restricts which
packages you can install on it.
.. code:: sh
# Linux/macOS
python3 -m pip install -U discord.py
# Windows
py -3 -m pip install -U discord.py
Otherwise to get voice support you should run the following command:
.. code:: sh
# Linux/macOS
python3 -m pip install -U "discord.py[voice]"
# Windows
py -3 -m pip install -U discord.py[voice]
To install the development version, do the following:
.. code:: sh
$ git clone https://github.com/Rapptz/discord.py
$ cd discord.py
$ python3 -m pip install -U .[voice]
Optional Packages
~~~~~~~~~~~~~~~~~~
* `PyNaCl <https://pypi.org/project/PyNaCl/>`__ (for voice support)
Please note that when installing voice support on Linux, you must install the following packages via your favourite package manager (e.g. ``apt``, ``dnf``, etc) before running the above commands:
* libffi-dev (or ``libffi-devel`` on some systems)
* python-dev (e.g. ``python3.8-dev`` for Python 3.8)
Quick Example
--------------
.. code:: py
import discord
class MyClient(discord.Client):
async def on_ready(self):
print('Logged on as', self.user)
async def on_message(self, message):
# don't respond to ourselves
if message.author == self.user:
return
if message.content == 'ping':
await message.channel.send('pong')
intents = discord.Intents.default()
intents.message_content = True
client = MyClient(intents=intents)
client.run('token')
Bot Example
~~~~~~~~~~~~~
.. code:: py
import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix='>', intents=intents)
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run('token')
You can find more examples in the examples directory.
Links
------
- `Documentation <https://discordpy.readthedocs.io/en/latest/index.html>`_
- `Official Discord Server <https://discord.gg/r3sSKJJ>`_
- `Discord API <https://discord.gg/discord-api>`_

View file

@ -0,0 +1,301 @@
discord/__init__.py,sha256=IYPguz6dLvzzE4aiLg-ZPeJx-99BrJGZo464nEOzsNk,2416
discord/__main__.py,sha256=qZyBHHpgmTPKohenVRpgTtgXRHpoSMNnMBzYjFMKzPE,11529
discord/__pycache__/__init__.cpython-312.pyc,,
discord/__pycache__/__main__.cpython-312.pyc,,
discord/__pycache__/_types.cpython-312.pyc,,
discord/__pycache__/abc.cpython-312.pyc,,
discord/__pycache__/activity.cpython-312.pyc,,
discord/__pycache__/appinfo.cpython-312.pyc,,
discord/__pycache__/asset.cpython-312.pyc,,
discord/__pycache__/audit_logs.cpython-312.pyc,,
discord/__pycache__/automod.cpython-312.pyc,,
discord/__pycache__/backoff.cpython-312.pyc,,
discord/__pycache__/channel.cpython-312.pyc,,
discord/__pycache__/client.cpython-312.pyc,,
discord/__pycache__/collectible.cpython-312.pyc,,
discord/__pycache__/colour.cpython-312.pyc,,
discord/__pycache__/components.cpython-312.pyc,,
discord/__pycache__/context_managers.cpython-312.pyc,,
discord/__pycache__/embeds.cpython-312.pyc,,
discord/__pycache__/emoji.cpython-312.pyc,,
discord/__pycache__/enums.cpython-312.pyc,,
discord/__pycache__/errors.cpython-312.pyc,,
discord/__pycache__/file.cpython-312.pyc,,
discord/__pycache__/flags.cpython-312.pyc,,
discord/__pycache__/gateway.cpython-312.pyc,,
discord/__pycache__/guild.cpython-312.pyc,,
discord/__pycache__/http.cpython-312.pyc,,
discord/__pycache__/integrations.cpython-312.pyc,,
discord/__pycache__/interactions.cpython-312.pyc,,
discord/__pycache__/invite.cpython-312.pyc,,
discord/__pycache__/member.cpython-312.pyc,,
discord/__pycache__/mentions.cpython-312.pyc,,
discord/__pycache__/message.cpython-312.pyc,,
discord/__pycache__/mixins.cpython-312.pyc,,
discord/__pycache__/object.cpython-312.pyc,,
discord/__pycache__/oggparse.cpython-312.pyc,,
discord/__pycache__/onboarding.cpython-312.pyc,,
discord/__pycache__/opus.cpython-312.pyc,,
discord/__pycache__/partial_emoji.cpython-312.pyc,,
discord/__pycache__/permissions.cpython-312.pyc,,
discord/__pycache__/player.cpython-312.pyc,,
discord/__pycache__/poll.cpython-312.pyc,,
discord/__pycache__/presences.cpython-312.pyc,,
discord/__pycache__/primary_guild.cpython-312.pyc,,
discord/__pycache__/raw_models.cpython-312.pyc,,
discord/__pycache__/reaction.cpython-312.pyc,,
discord/__pycache__/role.cpython-312.pyc,,
discord/__pycache__/scheduled_event.cpython-312.pyc,,
discord/__pycache__/search.cpython-312.pyc,,
discord/__pycache__/shard.cpython-312.pyc,,
discord/__pycache__/sku.cpython-312.pyc,,
discord/__pycache__/soundboard.cpython-312.pyc,,
discord/__pycache__/stage_instance.cpython-312.pyc,,
discord/__pycache__/state.cpython-312.pyc,,
discord/__pycache__/sticker.cpython-312.pyc,,
discord/__pycache__/subscription.cpython-312.pyc,,
discord/__pycache__/team.cpython-312.pyc,,
discord/__pycache__/template.cpython-312.pyc,,
discord/__pycache__/threads.cpython-312.pyc,,
discord/__pycache__/user.cpython-312.pyc,,
discord/__pycache__/utils.cpython-312.pyc,,
discord/__pycache__/voice_client.cpython-312.pyc,,
discord/__pycache__/voice_state.cpython-312.pyc,,
discord/__pycache__/welcome_screen.cpython-312.pyc,,
discord/__pycache__/widget.cpython-312.pyc,,
discord/_types.py,sha256=b6Ij97rnyo9WGs3qVFyRQ210LsIApH7Jr3-ZfmxU268,1410
discord/abc.py,sha256=8A4MJVJoD-8-vOXfMWy0JSi73fPJ0xdce0nOo9Lt1sw,74433
discord/activity.py,sha256=Ia9oYHYsfWDOoVx4rPGJLMlmVjT6wb9EFhrDbYQGQJI,29774
discord/app_commands/__init__.py,sha256=9xHXZDngFso363Sc1IjYqHm5x-PcX6p045li7W4acmw,448
discord/app_commands/__pycache__/__init__.cpython-312.pyc,,
discord/app_commands/__pycache__/checks.cpython-312.pyc,,
discord/app_commands/__pycache__/commands.cpython-312.pyc,,
discord/app_commands/__pycache__/errors.cpython-312.pyc,,
discord/app_commands/__pycache__/installs.cpython-312.pyc,,
discord/app_commands/__pycache__/models.cpython-312.pyc,,
discord/app_commands/__pycache__/namespace.cpython-312.pyc,,
discord/app_commands/__pycache__/transformers.cpython-312.pyc,,
discord/app_commands/__pycache__/translator.cpython-312.pyc,,
discord/app_commands/__pycache__/tree.cpython-312.pyc,,
discord/app_commands/checks.py,sha256=bSwWQg5kg8nwA5RZ2TYh6ATwgNHxvC2iFk4SiiFMxPQ,18183
discord/app_commands/commands.py,sha256=Ou_xAzuKZWNMeX-9I4I0thRkOj0WjY1rFjjp6h5WzRU,111432
discord/app_commands/errors.py,sha256=PHjqROIuwTPH71-2GmTllZ1VhQlLJa2UjJaH8EeEdJI,18787
discord/app_commands/installs.py,sha256=mykHQP7NH3I-4IDQs497oh-fKW8VhtCti3UVblkJ0fI,7410
discord/app_commands/models.py,sha256=dyDG_awGujz2gC7lHc9yZMgqTysv9PjpXltiJQznOws,45921
discord/app_commands/namespace.py,sha256=5_eXpokvp6gMu9ooymPcVahAFNqv8aGawsIA2sZ8QFM,13043
discord/app_commands/transformers.py,sha256=P-b3v79hafM4UNvwaicYRdb19yxLWDg_GpMBUgrNJ4g,33826
discord/app_commands/translator.py,sha256=0u7yKNa08pN0Ob8x_3SOIFVmwE8b3ehXStcBartpz_Q,10691
discord/app_commands/tree.py,sha256=tW1ODSS45HKO3SJbLjUOWEWiwMjsaf2zVLANdkr-XbI,50784
discord/appinfo.py,sha256=uCX4_wCXXE0CP178-6lRToHDvMFU3paIYpdg_jgT1Ng,25473
discord/asset.py,sha256=Hxl96VVlWqg94DMxef5jNAUCXU3X7mMEUJn83LdxzzU,17218
discord/audit_logs.py,sha256=Np-qPInFo71ES66CJlnebtGIDN2dsbYeJ62wdPDinME,42119
discord/automod.py,sha256=RJVXKsXnhW6z1LRMtReDsNhiCJuCLNQjHrjCX3N9okA,26916
discord/backoff.py,sha256=Br0irXTPxWPwRox67h0vglM2wd6LogIkfdN8zwbM_PU,3727
discord/bin/COPYING,sha256=AmeueVq3RMTg-cReJJRA_fLnXayMgE82BmsoZJv3Sq8,1487
discord/bin/libopus-0.x64.dll,sha256=yE2oNujZJCGsMFhCz-WnJImO0J00DUaxKeIQvclEgTE,441856
discord/bin/libopus-0.x86.dll,sha256=O1v-EpUPNQQ-110rb6kCyTbWelBxYL92NY1nx2wdveg,366080
discord/channel.py,sha256=sJJbHARHLB_qR8nhvlkTrMaov7juLeSjrMAdv_gukLE,129132
discord/client.py,sha256=jj8Tm4zFBwQ0TzTUzIrfh4Hai_cTnWaunuKXjkIn8Ws,106299
discord/collectible.py,sha256=ahj6sJnFv50gKtDO8dORFnri8BqlzqwODRuJB53_sVA,3562
discord/colour.py,sha256=163p36hxGAq0bzUSkc4rVJe3W8hw5aqdFQ63CbHMeFY,16246
discord/components.py,sha256=PtdiHoF2Z3FFpGUeA07b6c4qy_42-ldq45VY7-lxVQ8,55420
discord/context_managers.py,sha256=hloaEAAhLcDB-QfyoCPEpH_vsc3y4WLs1Ujs352tLbQ,3032
discord/embeds.py,sha256=aPDstpniJRGf6MMnnfuv6IW1PFtxoT0xMYBoOoPQLGU,24111
discord/emoji.py,sha256=0BRqyQ-uVoSPR9rZ7WBfZ7rIh8z0tdZ7gY-83WnwvB0,10426
discord/enums.py,sha256=s41ecYSNja9gNxxTUSzDac7MI20cxRL1mLi_S-74RkU,30103
discord/errors.py,sha256=L6YIpkykkKzPKVhxIEicYEPWrzC0iLJg3pd9ywz4RE8,10027
discord/ext/commands/__init__.py,sha256=ZQPvApylgqC07qrj80DDkT4Dbd7j_OVy5Xw4RiYZJRc,437
discord/ext/commands/__pycache__/__init__.cpython-312.pyc,,
discord/ext/commands/__pycache__/_types.cpython-312.pyc,,
discord/ext/commands/__pycache__/bot.cpython-312.pyc,,
discord/ext/commands/__pycache__/cog.cpython-312.pyc,,
discord/ext/commands/__pycache__/context.cpython-312.pyc,,
discord/ext/commands/__pycache__/converter.cpython-312.pyc,,
discord/ext/commands/__pycache__/cooldowns.cpython-312.pyc,,
discord/ext/commands/__pycache__/core.cpython-312.pyc,,
discord/ext/commands/__pycache__/errors.cpython-312.pyc,,
discord/ext/commands/__pycache__/flags.cpython-312.pyc,,
discord/ext/commands/__pycache__/help.cpython-312.pyc,,
discord/ext/commands/__pycache__/hybrid.cpython-312.pyc,,
discord/ext/commands/__pycache__/parameters.cpython-312.pyc,,
discord/ext/commands/__pycache__/view.cpython-312.pyc,,
discord/ext/commands/_types.py,sha256=3DO6t0TuX6P3jhOrEX1JWb_FPxUFnwDdY84Kv-_6TfE,2628
discord/ext/commands/bot.py,sha256=h3dpdKONHzacrqxK66isk9hfjYyssN7Aura6uh2zVag,54429
discord/ext/commands/cog.py,sha256=HGR688A16zZrdOLeO4myy6e5d3C_R3lri-4uPRB5Koc,31833
discord/ext/commands/context.py,sha256=LSr5_dGTAQv1yWLDS5p0-Mz6GTlmfSJ30HzlJT-_g8k,42933
discord/ext/commands/converter.py,sha256=zGmxB5IFXe0eVodKkqpZKz010LnwM_7JusoYdrTZijg,50096
discord/ext/commands/cooldowns.py,sha256=n7FB7_ZpKdPegU5ih2yAPR02sd0AP7GCKomVXBXkDD8,9719
discord/ext/commands/core.py,sha256=k7nsJXmVnfJ4wkQX9NA0NKAs3RPKTjVXhON5G9VOv5M,91003
discord/ext/commands/errors.py,sha256=vrlvkNfQrd27i02ve8_bNZgH2G1GD8X_FULHAJEkP2k,36844
discord/ext/commands/flags.py,sha256=xzJs9nKQn0zW83EFmry1dIQcNRUnYKYTei7bJQlYgPA,25272
discord/ext/commands/help.py,sha256=1-2dcjt31ZbZgSA2aYiQ1YcStf2vgfHc_c9DqABgeKA,59009
discord/ext/commands/hybrid.py,sha256=v5obOLnG9_JJOYgKAdTEvVeIQK4Rf5UBRQ3j1rMnx34,39911
discord/ext/commands/parameters.py,sha256=xm0d8MSLJGM7lLHMF8V-wkevFdQo81LswpLAkfgkj6E,9625
discord/ext/commands/view.py,sha256=6hVpDL1_tMnAQYlWEcpJylhc2dpnSKK0F1EBqcgdSMo,6247
discord/ext/tasks/__init__.py,sha256=2ecSHqn8tLOuawKl0c3wBqSbgAu9hR74snr2ZUkVzI4,30878
discord/ext/tasks/__pycache__/__init__.cpython-312.pyc,,
discord/file.py,sha256=R1tPnNiC01nd8WBFKG1HXECBnKakWLTbGzwv--8GgEw,5930
discord/flags.py,sha256=KHG45o0emheuRItMIuzkr5QROUNLDu4A2vRoKBv0wTU,72778
discord/gateway.py,sha256=jKpFys3VgU_qZRwmKgovTVT4zgjs5Y3iobYUrgFTcBI,42467
discord/guild.py,sha256=nXH4MvYPNDIWBAe9Y6H0e95TadnWfiwbzTBMZTB2c9E,175455
discord/http.py,sha256=ycaZhPfEexm-oczIWzBS4iANuLPGdg1bmF1II7gEL7w,105000
discord/integrations.py,sha256=kwej3q_nxJpNNY5YZc5Ux4l6GjVsdvf3qGPwdk0qjE4,13801
discord/interactions.py,sha256=9kdH877SRODvhdWURuzcZCx6wU1_Srm0X6UrByPc8LU,60728
discord/invite.py,sha256=A1qMwHK1dqZSjdG9yPGWieCjhZG9V0_TMM5J3iY39Hg,21227
discord/member.py,sha256=EKF9YMGdwGY9SRxoW1gcMdLBlhgtAFxKNxJwtSB5MFc,46313
discord/mentions.py,sha256=2DZE_Uh2sDIoext6-bAXkdyWAjRVSAV3GrMYxKFIL14,5592
discord/message.py,sha256=bs42-1JHk6mdjrTibJmYCfNN5NwtYy0SbQeAxhH3Vbs,113053
discord/mixins.py,sha256=_mKBOfdhQKNwlVx2m4jbJmOvtWxkuWSBEbnhxNDd4qo,1485
discord/object.py,sha256=3fP7e-ehlJv_JNelOxV5LU-sVW9l53L2JHBAnJVlYfU,3720
discord/oggparse.py,sha256=lVA3uwY7NXoOnjg5zjdzRlieOPeJ00bu36TGW2XGMVE,3654
discord/onboarding.py,sha256=FdJD3TthtdNYkNVf0etiRyc0fQRFxhJ9F1DWhIGHfhU,13203
discord/opus.py,sha256=0lISbDagcXckIc1XyCuOGQDSfdci53fdJZ5LwuZ3-zA,16360
discord/partial_emoji.py,sha256=bHBf28U7KrIBUG-RenlqS5ZL3Tft_hUM4BUvBzla7nA,8754
discord/permissions.py,sha256=fBuYx1LwsixbTsq5qm7RIfv9w1JROOY4wM8oQum4VA8,37467
discord/player.py,sha256=FexeI6XmplI0ddKpHEU1nYiPa84l9JySXtKIIvbfinQ,32018
discord/poll.py,sha256=UYjzflRyZY30qnM1UeSI-q6IZII-Aco4BuP701D78dY,20769
discord/presences.py,sha256=nlR6XDj0f3zOQgNcMOkaGA4Z-QGveNA8rEgzp2JxtvU,5858
discord/primary_guild.py,sha256=un0EvvGdA63WGI6TwOyEkZIYN7vnp2uSyyqC_lRhZ8c,3537
discord/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
discord/raw_models.py,sha256=g3DW746dydqnzKFpaZHuX8a_uRcAaT2hyeCQ--PTRB4,20082
discord/reaction.py,sha256=nJ-v5qDr2C5BYNl6ke7rHkN1TVdS_EfXzO5vrLIEmxg,9623
discord/role.py,sha256=jU2pbSLSVK9nW8VlpdceKVdE1aODN2t1SIJ4GllBuY8,25149
discord/scheduled_event.py,sha256=d8lIg_qlwCnpRRhi2eO65Mbet6hVfXfjfqKUvWkppPg,23589
discord/search.py,sha256=oY2gO09ieokKytCY2svNbh4_AehrRtmr1I3yV_anBPM,13638
discord/shard.py,sha256=t0WpsigxrLoCDBIau5cPbd6UcV72vY7oCLe0h42HSQc,22941
discord/sku.py,sha256=AVuFCO5bt189g7EFIsZNb7vrhCH2_kEy3hSph7YBVKs,12121
discord/soundboard.py,sha256=uSS3ppAgKtvKHXrQ2co0NJ-e2AgGVV1oJW4c6I_gcTU,10330
discord/stage_instance.py,sha256=TBiXfIoaMKemDZLj_Fy7glDo4mnrtJu735O5catVM7c,6498
discord/state.py,sha256=13mGk28AN7NQ_1jyHFpfyMztXSteVKtjraCx6-MM4SA,83396
discord/sticker.py,sha256=kMFy2069ROWl2n9EoJRnZXPtRKyAARvKvhKqE-lV0Zg,16022
discord/subscription.py,sha256=1Twy-6p4OqRrI8d17y1-kyGEwEGoDllzF0raGZLOCio,4109
discord/team.py,sha256=ZxcSmeF5fYWT6cmVjZwu56yCAK5ITJCCHPTs3XpKdiw,5012
discord/template.py,sha256=AOdsyN1iDCS-kyJUkbx0C24rNwQ8TqXxDTNDMa98bDg,9563
discord/threads.py,sha256=KqtimMmvqjCUxRzxIobm6wq4Zr9G8cAQBbr2KDUFGcc,33180
discord/types/__init__.py,sha256=7kT6hLaDiMVwuJvp4Os08kxqu9bxX3Yr9FFcOGYd6YQ,149
discord/types/__pycache__/__init__.cpython-312.pyc,,
discord/types/__pycache__/activity.cpython-312.pyc,,
discord/types/__pycache__/appinfo.cpython-312.pyc,,
discord/types/__pycache__/audit_log.cpython-312.pyc,,
discord/types/__pycache__/automod.cpython-312.pyc,,
discord/types/__pycache__/channel.cpython-312.pyc,,
discord/types/__pycache__/command.cpython-312.pyc,,
discord/types/__pycache__/components.cpython-312.pyc,,
discord/types/__pycache__/embed.cpython-312.pyc,,
discord/types/__pycache__/emoji.cpython-312.pyc,,
discord/types/__pycache__/gateway.cpython-312.pyc,,
discord/types/__pycache__/guild.cpython-312.pyc,,
discord/types/__pycache__/integration.cpython-312.pyc,,
discord/types/__pycache__/interactions.cpython-312.pyc,,
discord/types/__pycache__/invite.cpython-312.pyc,,
discord/types/__pycache__/member.cpython-312.pyc,,
discord/types/__pycache__/message.cpython-312.pyc,,
discord/types/__pycache__/onboarding.cpython-312.pyc,,
discord/types/__pycache__/poll.cpython-312.pyc,,
discord/types/__pycache__/role.cpython-312.pyc,,
discord/types/__pycache__/scheduled_event.cpython-312.pyc,,
discord/types/__pycache__/sku.cpython-312.pyc,,
discord/types/__pycache__/snowflake.cpython-312.pyc,,
discord/types/__pycache__/soundboard.cpython-312.pyc,,
discord/types/__pycache__/sticker.cpython-312.pyc,,
discord/types/__pycache__/subscription.cpython-312.pyc,,
discord/types/__pycache__/team.cpython-312.pyc,,
discord/types/__pycache__/template.cpython-312.pyc,,
discord/types/__pycache__/threads.cpython-312.pyc,,
discord/types/__pycache__/user.cpython-312.pyc,,
discord/types/__pycache__/voice.cpython-312.pyc,,
discord/types/__pycache__/webhook.cpython-312.pyc,,
discord/types/__pycache__/welcome_screen.cpython-312.pyc,,
discord/types/__pycache__/widget.cpython-312.pyc,,
discord/types/activity.py,sha256=e7dicEPHcjPh0Q2w472mbLCsGsw1f880Qu-BOqb2JBg,2903
discord/types/appinfo.py,sha256=dPXIMBVoZ9QRS_WLTwucjAdIjF4c8_PeKp_1mbwPswU,2812
discord/types/audit_log.py,sha256=tURVFDsw0rLvPw89mEvw8BtNLG_1SlHgxBvnrt7JvJw,9500
discord/types/automod.py,sha256=TMfLnIt3NRqi4cXGTBTCuWut-Rwh_me--g_M_w2fi8I,4047
discord/types/channel.py,sha256=hICn3KuWaRVpP08u-64grKuD98IYo28LUWTrUc9qwFI,5386
discord/types/command.py,sha256=vK9jid00jdzW4WzLwqZLv_IVD_KWYT8o5IPPehJW16w,6457
discord/types/components.py,sha256=a9cKlzqfDT2qLLRMZf8qIuRt2JtSuRWgT8pnlAoVj68,6678
discord/types/embed.py,sha256=BqsbMEqZeoo_VUsy5qVHvCzbohLzpH9PKKJrroDgP44,2142
discord/types/emoji.py,sha256=TaKNzVkZjWzH1V29M3Tx4TtSfh1QeYsu2JrFt7aABlQ,1602
discord/types/gateway.py,sha256=YW0d8Jr2KqD20dbzmz_uKLEIJzMOrjWB-hf_PTpBQqI,9562
discord/types/guild.py,sha256=gPplRh6mzT9WRCGVeBPUbxHB7H_C9gq4FGZcagej5UU,5814
discord/types/integration.py,sha256=8HU48LNhr4eqXBzOkib3a5zEfxg1rvOTWp1IeERNpnw,2288
discord/types/interactions.py,sha256=oTCp_EtcJTG3l4ocHenAe9tWoP-fxJIamFLc6WsdRcs,11615
discord/types/invite.py,sha256=wYJ92avYhqmAKDqHjdNY6huCnk5EgrobPeZsg2gBK_A,2837
discord/types/member.py,sha256=eGhEbN4XnMzV214iSSOzINbA0uNLhtT1fnByQ4FCXzw,2152
discord/types/message.py,sha256=1Y5e_GdtSJLwP_VGDvGRdQO0fHnkFd_pm5lsjDcW3hM,6002
discord/types/onboarding.py,sha256=LYK7je3DXjrvCNGhof3bWhNlEHDuMQ0pxXkttopIcfw,2150
discord/types/poll.py,sha256=YCc_ZLLiZhKsn-rqiOn8p0y4fDv8-CYi7v-82QzFcbQ,2374
discord/types/role.py,sha256=msUn92ZRHk2CHpBIhfc2TuWdtghqxrdQfTMywHNNqdk,1909
discord/types/scheduled_event.py,sha256=eL4wJmMhv8mOZ3VxWMW7y9tIlY_iCFzmXpW5U3iZk0I,3282
discord/types/sku.py,sha256=bTdQ0PaS7oJ3svtrLDTpDis-uZ9hwyvNC9-8_HbWAkE,1640
discord/types/snowflake.py,sha256=x_L3OXauewQagDr6jPzj7uCw1MNqijsy-Uo9vvkwvF0,1182
discord/types/soundboard.py,sha256=D5ucZoAQZkdMAWi9AjogyjHOM6LzQwH9kxVzb8Z1a_k,1710
discord/types/sticker.py,sha256=wUE0Kv_l3g8AbyB05wHNnJh3vMz4QTdRCO9sgaKLx8s,2260
discord/types/subscription.py,sha256=PU8gRiW49zSmaxe8ln1dpzJHBSbkfghw6pTGtiym2qU,1560
discord/types/team.py,sha256=FjvgCPTHS8qo8XNwQgBbyz3SJoZriyzRwZh4pWl0dHk,1561
discord/types/template.py,sha256=EO4tA2WypntCGQ9sWud5VS_uI8n12iVVHVPcNgCtZvM,1609
discord/types/threads.py,sha256=4Yn35a3-i6k4T1WwuLwXWLw_E9ZLTKiBE4qKOoTImNY,2482
discord/types/user.py,sha256=7Kh7J1fclebRNUVaz3EwyGTolW09g0vQ6D7p61JsBr0,2352
discord/types/voice.py,sha256=pZR5evxQX8O8Mdd0b_oJAVFeTCtdEI80z9pWyD24aOA,2322
discord/types/webhook.py,sha256=WvgC7G0CLx7LByZySnwSnpha_iMy9PHOV61GPyZUB9Y,1974
discord/types/welcome_screen.py,sha256=ukQMefZLHpgyg0_5IoAzN0UX40VayhF2vnJzNJNMZzA,1460
discord/types/widget.py,sha256=YRkhDoBHbCEtkmYTVOSoHM8Y3mH9GIdowthoz8ISJYU,1883
discord/ui/__init__.py,sha256=1N_kvlmup5rpwhlwJftTVJ9XJb3zJhgo5KobGR0Oiro,602
discord/ui/__pycache__/__init__.cpython-312.pyc,,
discord/ui/__pycache__/action_row.cpython-312.pyc,,
discord/ui/__pycache__/button.cpython-312.pyc,,
discord/ui/__pycache__/checkbox.cpython-312.pyc,,
discord/ui/__pycache__/container.cpython-312.pyc,,
discord/ui/__pycache__/dynamic.cpython-312.pyc,,
discord/ui/__pycache__/file.cpython-312.pyc,,
discord/ui/__pycache__/file_upload.cpython-312.pyc,,
discord/ui/__pycache__/item.cpython-312.pyc,,
discord/ui/__pycache__/label.cpython-312.pyc,,
discord/ui/__pycache__/media_gallery.cpython-312.pyc,,
discord/ui/__pycache__/modal.cpython-312.pyc,,
discord/ui/__pycache__/radio.cpython-312.pyc,,
discord/ui/__pycache__/section.cpython-312.pyc,,
discord/ui/__pycache__/select.cpython-312.pyc,,
discord/ui/__pycache__/separator.cpython-312.pyc,,
discord/ui/__pycache__/text_display.cpython-312.pyc,,
discord/ui/__pycache__/text_input.cpython-312.pyc,,
discord/ui/__pycache__/thumbnail.cpython-312.pyc,,
discord/ui/__pycache__/view.cpython-312.pyc,,
discord/ui/action_row.py,sha256=H4DEZXb8ARxk0P3IthtqoZPzCkBv6n856XzFaLhdGO8,23007
discord/ui/button.py,sha256=QtmR9Gl8s_cW-nb1Lr9aAbnnE08Vn-WwXUEzFf2Dyns,13640
discord/ui/checkbox.py,sha256=06TnSdEnq4S6HxCIFuCVyVXvC_O3mK4SrR4Lr9crrq4,12698
discord/ui/container.py,sha256=xlf0iWjOGKFAwHVcI5Kac8BMfjchlJMur2_QdKx1LsY,12204
discord/ui/dynamic.py,sha256=KAC9Av58HThDqOk4X9KlOkHmkbtesKbv8GOrg3V9Vnc,8285
discord/ui/file.py,sha256=jMX7RV8muE6SmdISESAduK6_sBqvLb09xzoovzvOY3w,5295
discord/ui/file_upload.py,sha256=1gw-5FasR2gGs75qy62iGjYIG1yqguE5WgVHoXLuf40,6675
discord/ui/item.py,sha256=jgF1sgBYfMmbO_yXxi27RpSMLQxnpnL1PlwkrFksMQU,8464
discord/ui/label.py,sha256=sAbBReCLBqrJ8ludaSQtT44rkCpVFx1R6IBRQ8Qlx7E,4404
discord/ui/media_gallery.py,sha256=mlbzeBBs0o-laftL9-IHHTk6ChgvRZCecuw9skpzfJY,8096
discord/ui/modal.py,sha256=tgSnm3KEj5pfeeN1hYB_X-qLKUQPwuNsM5rwAjSRUCI,9091
discord/ui/radio.py,sha256=b-YDqYjAG50QbO4-x_rPLnrdHG7z7kmBcYt4hJK5Hrw,7896
discord/ui/section.py,sha256=afZf95KotNs3ieqabOG2-OgQ-SWFiH6FoGY7ygvQ-UA,8424
discord/ui/select.py,sha256=VfRYjfjVR4FPWhl96v4Enkpiyv3E96r_00I008Rkk9s,48806
discord/ui/separator.py,sha256=pjuXJTNhusZY5DXEdFf8RSEjBm0u0eXabsBVj-kl-Io,3930
discord/ui/text_display.py,sha256=-2hoBYWVp7AlNalKUiPQ-vCaqYRTG43CQxtxdp5Y2j0,2771
discord/ui/text_input.py,sha256=B8ro1XPSV4pWoiWJ2hcw1GtIZMIhFfjXgqZj250bpo0,9241
discord/ui/thumbnail.py,sha256=csRJJu_pIv0B4l8z4IC-NooEY91RfSJGqx6RxpmeBbs,4767
discord/ui/view.py,sha256=rN2T-ddDPrxx_3uYZIBy5JOJL63T2GHwYdXcQsc324o,38292
discord/user.py,sha256=-IZw3eVMsINxM3vQ_605A9-Cmy04ipJIMKqYohJSNrw,19524
discord/utils.py,sha256=-MQLZPSFYhvYf_3zz-BP9qlsoe32Uxcf6IPHcjww5mU,47692
discord/voice_client.py,sha256=Zo_3X7EzDovnm2tD8nPLzaBY2vUBRMr4MzLp-iEO40E,21541
discord/voice_state.py,sha256=ohxb9z-rthiYvnEd2Ze9ArHQUT-skrD2ROltr6aioX0,32066
discord/webhook/__init__.py,sha256=5lx7IcCFf9DAjdX7CVen3-8DjHAfGvS1rSDY3DyVnqM,182
discord/webhook/__pycache__/__init__.cpython-312.pyc,,
discord/webhook/__pycache__/async_.cpython-312.pyc,,
discord/webhook/__pycache__/sync.cpython-312.pyc,,
discord/webhook/async_.py,sha256=EsdoIvsc3w_vYL2e_ZGIR2W5SfrfopbHvvMCrhvUAxQ,75180
discord/webhook/sync.py,sha256=X9A1fD2Zz5ChBRIF28zxOvG5jAPqEJQQt7B2NJH-2pc,48401
discord/welcome_screen.py,sha256=tCDfA3zH8xkDCPrBnLi_aZDcGSHZ7hQw32zqK2x4tV8,7540
discord/widget.py,sha256=Om-PG0_ZBO2cWe3K77Fl62b5fOEcD1ADNzg5tktEycY,10475
discord_py-2.7.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
discord_py-2.7.1.dist-info/METADATA,sha256=rfsD3U2Y_wC2s2WmFd7w1et9AKk5cinh5EgozOT4Z-E,7531
discord_py-2.7.1.dist-info/RECORD,,
discord_py-2.7.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
discord_py-2.7.1.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
discord_py-2.7.1.dist-info/licenses/LICENSE,sha256=IRr8eHptwl13Oez9dujx-pRmN028VYOGiW2Yzf7lEn0,1081
discord_py-2.7.1.dist-info/top_level.txt,sha256=fJkrNbR-_8ubMBUcDEJBcfkpECrvSEmMrNKgvLlQFoM,8

View file

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

View file

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2015-present Rapptz
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.