quick fix 2

This commit is contained in:
Bartłomiej Patyk
2025-10-22 19:05:25 +02:00
commit e5e64b6dc8
598 changed files with 300649 additions and 0 deletions

View File

@ -0,0 +1 @@
pip

View File

@ -0,0 +1,207 @@
Metadata-Version: 2.4
Name: discord.py
Version: 2.6.3
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"
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; 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,293 @@
discord/__init__.py,sha256=xGqXkswZaoHTTjVhLs_wYLiycQZNFoGdvNIg6hkuADw,2389
discord/__main__.py,sha256=TM1GydZVZu1xMSxKUIHZXp94cXK4vT1e6GUllG4RQ_o,11347
discord/__pycache__/__init__.cpython-313.pyc,,
discord/__pycache__/__main__.cpython-313.pyc,,
discord/__pycache__/_types.cpython-313.pyc,,
discord/__pycache__/abc.cpython-313.pyc,,
discord/__pycache__/activity.cpython-313.pyc,,
discord/__pycache__/appinfo.cpython-313.pyc,,
discord/__pycache__/asset.cpython-313.pyc,,
discord/__pycache__/audit_logs.cpython-313.pyc,,
discord/__pycache__/automod.cpython-313.pyc,,
discord/__pycache__/backoff.cpython-313.pyc,,
discord/__pycache__/channel.cpython-313.pyc,,
discord/__pycache__/client.cpython-313.pyc,,
discord/__pycache__/colour.cpython-313.pyc,,
discord/__pycache__/components.cpython-313.pyc,,
discord/__pycache__/context_managers.cpython-313.pyc,,
discord/__pycache__/embeds.cpython-313.pyc,,
discord/__pycache__/emoji.cpython-313.pyc,,
discord/__pycache__/enums.cpython-313.pyc,,
discord/__pycache__/errors.cpython-313.pyc,,
discord/__pycache__/file.cpython-313.pyc,,
discord/__pycache__/flags.cpython-313.pyc,,
discord/__pycache__/gateway.cpython-313.pyc,,
discord/__pycache__/guild.cpython-313.pyc,,
discord/__pycache__/http.cpython-313.pyc,,
discord/__pycache__/integrations.cpython-313.pyc,,
discord/__pycache__/interactions.cpython-313.pyc,,
discord/__pycache__/invite.cpython-313.pyc,,
discord/__pycache__/member.cpython-313.pyc,,
discord/__pycache__/mentions.cpython-313.pyc,,
discord/__pycache__/message.cpython-313.pyc,,
discord/__pycache__/mixins.cpython-313.pyc,,
discord/__pycache__/object.cpython-313.pyc,,
discord/__pycache__/oggparse.cpython-313.pyc,,
discord/__pycache__/onboarding.cpython-313.pyc,,
discord/__pycache__/opus.cpython-313.pyc,,
discord/__pycache__/partial_emoji.cpython-313.pyc,,
discord/__pycache__/permissions.cpython-313.pyc,,
discord/__pycache__/player.cpython-313.pyc,,
discord/__pycache__/poll.cpython-313.pyc,,
discord/__pycache__/presences.cpython-313.pyc,,
discord/__pycache__/primary_guild.cpython-313.pyc,,
discord/__pycache__/raw_models.cpython-313.pyc,,
discord/__pycache__/reaction.cpython-313.pyc,,
discord/__pycache__/role.cpython-313.pyc,,
discord/__pycache__/scheduled_event.cpython-313.pyc,,
discord/__pycache__/search.cpython-313.pyc,,
discord/__pycache__/shard.cpython-313.pyc,,
discord/__pycache__/sku.cpython-313.pyc,,
discord/__pycache__/soundboard.cpython-313.pyc,,
discord/__pycache__/stage_instance.cpython-313.pyc,,
discord/__pycache__/state.cpython-313.pyc,,
discord/__pycache__/sticker.cpython-313.pyc,,
discord/__pycache__/subscription.cpython-313.pyc,,
discord/__pycache__/team.cpython-313.pyc,,
discord/__pycache__/template.cpython-313.pyc,,
discord/__pycache__/threads.cpython-313.pyc,,
discord/__pycache__/user.cpython-313.pyc,,
discord/__pycache__/utils.cpython-313.pyc,,
discord/__pycache__/voice_client.cpython-313.pyc,,
discord/__pycache__/voice_state.cpython-313.pyc,,
discord/__pycache__/welcome_screen.cpython-313.pyc,,
discord/__pycache__/widget.cpython-313.pyc,,
discord/_types.py,sha256=b6Ij97rnyo9WGs3qVFyRQ210LsIApH7Jr3-ZfmxU268,1410
discord/abc.py,sha256=xqEydHQXvPDL_ADAydh8UynOBmXwMCIfKmvNELgo8Ow,74340
discord/activity.py,sha256=Ia9oYHYsfWDOoVx4rPGJLMlmVjT6wb9EFhrDbYQGQJI,29774
discord/app_commands/__init__.py,sha256=9xHXZDngFso363Sc1IjYqHm5x-PcX6p045li7W4acmw,448
discord/app_commands/__pycache__/__init__.cpython-313.pyc,,
discord/app_commands/__pycache__/checks.cpython-313.pyc,,
discord/app_commands/__pycache__/commands.cpython-313.pyc,,
discord/app_commands/__pycache__/errors.cpython-313.pyc,,
discord/app_commands/__pycache__/installs.cpython-313.pyc,,
discord/app_commands/__pycache__/models.cpython-313.pyc,,
discord/app_commands/__pycache__/namespace.cpython-313.pyc,,
discord/app_commands/__pycache__/transformers.cpython-313.pyc,,
discord/app_commands/__pycache__/translator.cpython-313.pyc,,
discord/app_commands/__pycache__/tree.cpython-313.pyc,,
discord/app_commands/checks.py,sha256=bSwWQg5kg8nwA5RZ2TYh6ATwgNHxvC2iFk4SiiFMxPQ,18183
discord/app_commands/commands.py,sha256=CR8KSjizxA8LlD0t8Tot3g38LOkBdLw3vM75-S7dI34,109938
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=-8HehDJAI4mOVn9SBv_8dImGSP4NJcZz0Y5Uoiwjy_w,46033
discord/app_commands/namespace.py,sha256=5_eXpokvp6gMu9ooymPcVahAFNqv8aGawsIA2sZ8QFM,13043
discord/app_commands/transformers.py,sha256=IzipKTGpIHgrCCAmrXzdjF6FnQEbq7pxT27A3PBFkCE,32555
discord/app_commands/translator.py,sha256=0u7yKNa08pN0Ob8x_3SOIFVmwE8b3ehXStcBartpz_Q,10691
discord/app_commands/tree.py,sha256=iKWkBAQUZoGUSuCy3R6DrjN1cb40M-RHb54HSWXJIoA,50620
discord/appinfo.py,sha256=uCX4_wCXXE0CP178-6lRToHDvMFU3paIYpdg_jgT1Ng,25473
discord/asset.py,sha256=oR5im6C63ygRTEV1sJsQqD9GZagLA4Ae13mm47QgDb4,16874
discord/audit_logs.py,sha256=Y9zMQ2NpCPxZkdJ_9oUIpcnKecFOsYDii4Pc7mxb3YU,42653
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=wA3th-HsuXlqO4yHY3Vsy3Q6C7mmkbHmmc3MOqa5LAk,128875
discord/client.py,sha256=5bM5HnfoDv5jMPWtN5krOf63qMSmL-VsSqVowkI72JY,104687
discord/colour.py,sha256=163p36hxGAq0bzUSkc4rVJe3W8hw5aqdFQ63CbHMeFY,16246
discord/components.py,sha256=XGiO9rA1y9yQwIvbfJcRbOjWZPaKpOzgr3IPsM3O1tk,43103
discord/context_managers.py,sha256=hloaEAAhLcDB-QfyoCPEpH_vsc3y4WLs1Ujs352tLbQ,3032
discord/embeds.py,sha256=aPDstpniJRGf6MMnnfuv6IW1PFtxoT0xMYBoOoPQLGU,24111
discord/emoji.py,sha256=F1DwHYpAH1ZQRdMAoEZH6IAqKxAeTZZVVTh6mUO2m8I,10411
discord/enums.py,sha256=8eBE2ze935JszEQJ2vyIyuS4kSTlvNwboC28HgR_vow,29239
discord/errors.py,sha256=nOPIWwzH7tQL8Roo-qGXTNlkeX9znzQc8hjvI50q4Qk,9850
discord/ext/commands/__init__.py,sha256=ZQPvApylgqC07qrj80DDkT4Dbd7j_OVy5Xw4RiYZJRc,437
discord/ext/commands/__pycache__/__init__.cpython-313.pyc,,
discord/ext/commands/__pycache__/_types.cpython-313.pyc,,
discord/ext/commands/__pycache__/bot.cpython-313.pyc,,
discord/ext/commands/__pycache__/cog.cpython-313.pyc,,
discord/ext/commands/__pycache__/context.cpython-313.pyc,,
discord/ext/commands/__pycache__/converter.cpython-313.pyc,,
discord/ext/commands/__pycache__/cooldowns.cpython-313.pyc,,
discord/ext/commands/__pycache__/core.cpython-313.pyc,,
discord/ext/commands/__pycache__/errors.cpython-313.pyc,,
discord/ext/commands/__pycache__/flags.cpython-313.pyc,,
discord/ext/commands/__pycache__/help.cpython-313.pyc,,
discord/ext/commands/__pycache__/hybrid.cpython-313.pyc,,
discord/ext/commands/__pycache__/parameters.cpython-313.pyc,,
discord/ext/commands/__pycache__/view.cpython-313.pyc,,
discord/ext/commands/_types.py,sha256=3DO6t0TuX6P3jhOrEX1JWb_FPxUFnwDdY84Kv-_6TfE,2628
discord/ext/commands/bot.py,sha256=DPS3fXo4T05MaM61MgqdrRRwEOXJRldq5uKClzGRBJQ,54409
discord/ext/commands/cog.py,sha256=LU6L5AIuA1gYs4R7N8tzvqnSMxs6eSz4z4mHF68scfM,32176
discord/ext/commands/context.py,sha256=tJjcXJgCp9H7Uj-hNuQ91tN1KU0u3XpiPyfBdTuF_P0,42913
discord/ext/commands/converter.py,sha256=YbhyAo-XWyyeLmMmSCShz04bXKsY5ficfL0c7Kw2WWU,49267
discord/ext/commands/cooldowns.py,sha256=n7FB7_ZpKdPegU5ih2yAPR02sd0AP7GCKomVXBXkDD8,9719
discord/ext/commands/core.py,sha256=RniwyCjMlG-p7vINH6pcBzyJTeVCRjZWlyDoDOowjE8,90944
discord/ext/commands/errors.py,sha256=7SrvXk25UpeGNLYDrkrmcXMtOXZVasulUx9Ckz701u4,36289
discord/ext/commands/flags.py,sha256=aWsEi6-EOFbAFZ6H05uzURN0WMLBeIoHYYdFOnlNQ7E,24334
discord/ext/commands/help.py,sha256=tZ8je06eWnTuuAJi1zuzfEWzwyFrPj5E74H69kSEDaY,58959
discord/ext/commands/hybrid.py,sha256=eUq4C_-IRb6nkK9-8XozOKsHwJskG0JbdQczE5pVOI8,39579
discord/ext/commands/parameters.py,sha256=xm0d8MSLJGM7lLHMF8V-wkevFdQo81LswpLAkfgkj6E,9625
discord/ext/commands/view.py,sha256=6hVpDL1_tMnAQYlWEcpJylhc2dpnSKK0F1EBqcgdSMo,6247
discord/ext/tasks/__init__.py,sha256=VC8YItt0HHhccLNyDJLKchrvigDbwMsKUJo6jEJIy-A,30096
discord/ext/tasks/__pycache__/__init__.cpython-313.pyc,,
discord/file.py,sha256=R1tPnNiC01nd8WBFKG1HXECBnKakWLTbGzwv--8GgEw,5930
discord/flags.py,sha256=KJk4xy4kjbqg6m7sKC82CG9F87HXu0n1CDGhUKiixSQ,72560
discord/gateway.py,sha256=6B5ypJWkJdBn3ljIyBf7XvDztD0zZ_D9pf5E01qI_vY,37049
discord/guild.py,sha256=dfSbSlccjt8CvQhWGOtEtBXdiYhpMh0rs9HbNayZ9kU,174020
discord/http.py,sha256=uu1X1E3o4F--dsgggHsAT6EXWrtD_Ul0zEqbKrdzal0,104684
discord/integrations.py,sha256=P2s9NjyWhlcdQs3IcRrVdr6wHmCVszwXSlhXNnU_CEk,13334
discord/interactions.py,sha256=Di40uQM80TFpyH1-T8tELIg63UGz997DTDVfzvpf3nE,59947
discord/invite.py,sha256=A1qMwHK1dqZSjdG9yPGWieCjhZG9V0_TMM5J3iY39Hg,21227
discord/member.py,sha256=Eza6wc_y-fwd82oLvfKopIgFtDsHPWQHqYPCy9l3GXs,43861
discord/mentions.py,sha256=2DZE_Uh2sDIoext6-bAXkdyWAjRVSAV3GrMYxKFIL14,5592
discord/message.py,sha256=NU4HOW6ZkR8X2eEO2f-GTBjShH6QaxfTGad9Ag6nrRc,112511
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=NVZM1U93xxFt6yVlIeVe9W6bvz3C2_SaoIWiHPJiq-0,8198
discord/permissions.py,sha256=68cWdYqDXB6pEazatdePsmuu1Hh5gkS5SWiNp4iGNvM,36233
discord/player.py,sha256=79Vq3AC-FuGhD_43EgyJrriDN7hPv2ViqJcxXZDh0mI,29742
discord/poll.py,sha256=UYjzflRyZY30qnM1UeSI-q6IZII-Aco4BuP701D78dY,20769
discord/presences.py,sha256=nlR6XDj0f3zOQgNcMOkaGA4Z-QGveNA8rEgzp2JxtvU,5858
discord/primary_guild.py,sha256=GcqHh4qT0NgB9wiwOZma4JUwtGcqTnXdm0aA2m-b3Lg,3481
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=TA49Eh4uQAg6pHMj6kCYDREgqU1C55wNlrxRMjNL7A0,83481
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=k4IPxBw3GUIbKMJK7fdN7yNN3ApTmxxp2S0uKfatDoA,33228
discord/types/__init__.py,sha256=7kT6hLaDiMVwuJvp4Os08kxqu9bxX3Yr9FFcOGYd6YQ,149
discord/types/__pycache__/__init__.cpython-313.pyc,,
discord/types/__pycache__/activity.cpython-313.pyc,,
discord/types/__pycache__/appinfo.cpython-313.pyc,,
discord/types/__pycache__/audit_log.cpython-313.pyc,,
discord/types/__pycache__/automod.cpython-313.pyc,,
discord/types/__pycache__/channel.cpython-313.pyc,,
discord/types/__pycache__/command.cpython-313.pyc,,
discord/types/__pycache__/components.cpython-313.pyc,,
discord/types/__pycache__/embed.cpython-313.pyc,,
discord/types/__pycache__/emoji.cpython-313.pyc,,
discord/types/__pycache__/gateway.cpython-313.pyc,,
discord/types/__pycache__/guild.cpython-313.pyc,,
discord/types/__pycache__/integration.cpython-313.pyc,,
discord/types/__pycache__/interactions.cpython-313.pyc,,
discord/types/__pycache__/invite.cpython-313.pyc,,
discord/types/__pycache__/member.cpython-313.pyc,,
discord/types/__pycache__/message.cpython-313.pyc,,
discord/types/__pycache__/onboarding.cpython-313.pyc,,
discord/types/__pycache__/poll.cpython-313.pyc,,
discord/types/__pycache__/role.cpython-313.pyc,,
discord/types/__pycache__/scheduled_event.cpython-313.pyc,,
discord/types/__pycache__/sku.cpython-313.pyc,,
discord/types/__pycache__/snowflake.cpython-313.pyc,,
discord/types/__pycache__/soundboard.cpython-313.pyc,,
discord/types/__pycache__/sticker.cpython-313.pyc,,
discord/types/__pycache__/subscription.cpython-313.pyc,,
discord/types/__pycache__/team.cpython-313.pyc,,
discord/types/__pycache__/template.cpython-313.pyc,,
discord/types/__pycache__/threads.cpython-313.pyc,,
discord/types/__pycache__/user.cpython-313.pyc,,
discord/types/__pycache__/voice.cpython-313.pyc,,
discord/types/__pycache__/webhook.cpython-313.pyc,,
discord/types/__pycache__/welcome_screen.cpython-313.pyc,,
discord/types/__pycache__/widget.cpython-313.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=TojPuPXNc0n15dcaPCpLxk9AT5l44AAgvNCyI-jIJVc,5666
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=GiaI4yXqRnXfZNfZGs5J4aiSZnVokiqaLbJYSvhxv0g,10652
discord/types/invite.py,sha256=wYJ92avYhqmAKDqHjdNY6huCnk5EgrobPeZsg2gBK_A,2837
discord/types/member.py,sha256=eGhEbN4XnMzV214iSSOzINbA0uNLhtT1fnByQ4FCXzw,2152
discord/types/message.py,sha256=ZVpZO8FJZSYUU4fRev5ST8flY_NDlOZ8mUpx3Sbz6F8,5994
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=_mGAeggCjQSN9UbppQupqd_nKzpOZ7mfRGbbv7BWssY,1912
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=hkAYFgxaTdVQfuHJuREJvWPQLWKX4cvrPJsuNWvM7TE,530
discord/ui/__pycache__/__init__.cpython-313.pyc,,
discord/ui/__pycache__/action_row.cpython-313.pyc,,
discord/ui/__pycache__/button.cpython-313.pyc,,
discord/ui/__pycache__/container.cpython-313.pyc,,
discord/ui/__pycache__/dynamic.cpython-313.pyc,,
discord/ui/__pycache__/file.cpython-313.pyc,,
discord/ui/__pycache__/item.cpython-313.pyc,,
discord/ui/__pycache__/label.cpython-313.pyc,,
discord/ui/__pycache__/media_gallery.cpython-313.pyc,,
discord/ui/__pycache__/modal.cpython-313.pyc,,
discord/ui/__pycache__/section.cpython-313.pyc,,
discord/ui/__pycache__/select.cpython-313.pyc,,
discord/ui/__pycache__/separator.cpython-313.pyc,,
discord/ui/__pycache__/text_display.cpython-313.pyc,,
discord/ui/__pycache__/text_input.cpython-313.pyc,,
discord/ui/__pycache__/thumbnail.cpython-313.pyc,,
discord/ui/__pycache__/view.cpython-313.pyc,,
discord/ui/action_row.py,sha256=dO0RcxUYFZMulInvgrRFMlz3M-Bup5ElDHwSzNO_nd0,23005
discord/ui/button.py,sha256=UdcY-n4K_N_LaJyQXXLRCL4JP7wR-9mWYE2Cxn70EnQ,13501
discord/ui/container.py,sha256=Oonrp9S5v8adcbCuxcBVqo6_vgbJVd73AjuEDXRH8cc,12574
discord/ui/dynamic.py,sha256=KAC9Av58HThDqOk4X9KlOkHmkbtesKbv8GOrg3V9Vnc,8285
discord/ui/file.py,sha256=_LUM8Gj8dxF1sHHji7tO6rXjNdfNxuGtDB16C9J-Kck,5062
discord/ui/item.py,sha256=PSEZOLhftFLEr8VT86HGfZHvamr16aOrnsnmR9XvZ1M,7536
discord/ui/label.py,sha256=UtC9NhuacVSgV4WGwcRBzWW4J4zwbAGxpdckYhqDhkE,4333
discord/ui/media_gallery.py,sha256=mlbzeBBs0o-laftL9-IHHTk6ChgvRZCecuw9skpzfJY,8096
discord/ui/modal.py,sha256=0wmsZKqn0AB4_7OLAPqGBXyOVs23J6Mz0rjkZ_j8izo,8305
discord/ui/section.py,sha256=xKMmfcNsgQw7_JwT2fQwshOzaatDm5g9fAGOznGe8mY,8349
discord/ui/select.py,sha256=RZ9yyDiFuzbF9en6QrVxjkJ53gA1UBNkXsJgm1e4fpM,47251
discord/ui/separator.py,sha256=F9C6Ye-Fjfdx3Gq4pKLegxY_c3ldgwpRVOM_fkAlLbo,3681
discord/ui/text_display.py,sha256=z7Ly4oDf62v8JmmUHnRBhDSdMKbdLq8q_coew_ZIck0,2730
discord/ui/text_input.py,sha256=bDasKy5GBVTAUTyxHtjT7RJiux4UTjCdnnvSHbY3hLg,8932
discord/ui/thumbnail.py,sha256=csRJJu_pIv0B4l8z4IC-NooEY91RfSJGqx6RxpmeBbs,4767
discord/ui/view.py,sha256=3tEIpk0DqiUrTsn_Q_d70560zzXEzijJxNyj_vfuDKA,37168
discord/user.py,sha256=a1Jre54D3BSK2mr2bEufChPm2rPBgtlpzmauL-z2ncg,18854
discord/utils.py,sha256=yxPUb6nQRCdIY9S6087j1fEopZC7NFqjgKdpvl5QCg8,46195
discord/voice_client.py,sha256=hDnElrdb12fG5I9B5JST6XWdFIKYvRaMLNemAEE1p3Q,20736
discord/voice_state.py,sha256=i00HxpcSOElZV0v6Zgp2MuCxK9IjtgpF1njGTeamIbE,29171
discord/webhook/__init__.py,sha256=5lx7IcCFf9DAjdX7CVen3-8DjHAfGvS1rSDY3DyVnqM,182
discord/webhook/__pycache__/__init__.cpython-313.pyc,,
discord/webhook/__pycache__/async_.cpython-313.pyc,,
discord/webhook/__pycache__/sync.cpython-313.pyc,,
discord/webhook/async_.py,sha256=bNRRELkM3e3RSvj92KX1wBHZRDqXTJ3jIgoXUAjntGc,74312
discord/webhook/sync.py,sha256=xoa1I3PRmLwLo5R3WsLcIFCXKS1hSZyo1NOc-MdSYDw,46834
discord/welcome_screen.py,sha256=tCDfA3zH8xkDCPrBnLi_aZDcGSHZ7hQw32zqK2x4tV8,7540
discord/widget.py,sha256=Om-PG0_ZBO2cWe3K77Fl62b5fOEcD1ADNzg5tktEycY,10475
discord_py-2.6.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
discord_py-2.6.3.dist-info/METADATA,sha256=ARsAZFkRfjO3vXx6x62DDWh7wAwM4zfPFI--ke-lZ2w,7455
discord_py-2.6.3.dist-info/RECORD,,
discord_py-2.6.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
discord_py-2.6.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
discord_py-2.6.3.dist-info/licenses/LICENSE,sha256=IRr8eHptwl13Oez9dujx-pRmN028VYOGiW2Yzf7lEn0,1081
discord_py-2.6.3.dist-info/top_level.txt,sha256=fJkrNbR-_8ubMBUcDEJBcfkpECrvSEmMrNKgvLlQFoM,8

View File

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

View File

@ -0,0 +1 @@
discord