On branch DiscordProfile

Initial commit
This commit is contained in:
EG
2026-07-01 15:15:07 +03:00
commit d4bf750c9e
3125 changed files with 601334 additions and 0 deletions
@@ -0,0 +1 @@
pip
@@ -0,0 +1,215 @@
Metadata-Version: 2.4
Name: py-cord
Version: 2.8.0
Summary: A Python wrapper for the Discord API
Author: Pycord Development
License-Expression: MIT
Project-URL: Homepage, https://pycord.dev
Project-URL: Changelog, https://docs.pycord.dev/en/master/changelog.html
Project-URL: Source, https://github.com/Pycord-Development/pycord
Project-URL: Documentation, https://docs.pycord.dev
Project-URL: Tracker, https://github.com/Pycord-Development/pycord/issues
Project-URL: Funding, https://patreon.com/pycord
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
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: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: <3.15,>=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: aiohttp<4.0,>=3.13.2
Requires-Dist: typing_extensions<5,>=4.12.0
Provides-Extra: docs
Requires-Dist: sphinx==9.1.0; python_version >= "3.13" and extra == "docs"
Requires-Dist: sphinxcontrib_trio==1.2.0; python_version >= "3.13" and extra == "docs"
Requires-Dist: sphinxcontrib-websupport==2.0.0; python_version >= "3.13" and extra == "docs"
Requires-Dist: myst-parser[linkify]==5.1.0; python_version >= "3.13" and extra == "docs"
Requires-Dist: sphinxext-opengraph==0.13.0; python_version >= "3.13" and extra == "docs"
Requires-Dist: sphinx-copybutton==0.5.2; python_version >= "3.13" and extra == "docs"
Requires-Dist: furo==2025.12.19; python_version >= "3.13" and extra == "docs"
Requires-Dist: sphinx-autodoc-typehints==3.10.2; python_version >= "3.13" and extra == "docs"
Requires-Dist: sphinx-intl==2.3.2; python_version >= "3.13" and extra == "docs"
Requires-Dist: typing_extensions==4.15.0; python_version >= "3.13" and extra == "docs"
Requires-Dist: levenshtein==0.27.3; python_version >= "3.13" and extra == "docs"
Provides-Extra: speed
Requires-Dist: msgspec~=0.21.0; extra == "speed"
Requires-Dist: aiohttp[speedups]; extra == "speed"
Provides-Extra: voice
Requires-Dist: PyNaCl<1.7,>=1.6; extra == "voice"
Requires-Dist: davey<1,>=0.1.4; extra == "voice"
Dynamic: license-file
.. image:: https://raw.githubusercontent.com/Pycord-Development/pycord/master/pycord.png
:alt: Pycord v3
Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.
======
.. image:: https://img.shields.io/pypi/v/py-cord.svg?style=for-the-badge&logo=pypi&color=yellowgreen&logoColor=white
:target: https://pypi.python.org/pypi/py-cord
:alt: PyPI version info
.. image:: https://img.shields.io/pypi/pyversions/py-cord.svg?style=for-the-badge&logo=python&logoColor=white
:target: https://pypi.python.org/pypi/py-cord
:alt: PyPI supported Python versions
.. image:: https://img.shields.io/pypi/dm/py-cord?color=blueviolet&logo=pypi&logoColor=white&style=for-the-badge
:target: https://pypi.python.org/pypi/py-cord
:alt: PyPI downloads
.. image:: https://img.shields.io/github/v/release/Pycord-Development/pycord?include_prereleases&label=Latest%20Release&logo=github&sort=semver&style=for-the-badge&logoColor=white
:target: https://github.com/Pycord-Development/pycord/releases
:alt: Latest release
.. image:: https://img.shields.io/discord/881207955029110855?label=discord&style=for-the-badge&logo=discord&color=5865F2&logoColor=white
:target: https://pycord.dev/discord
:alt: Discord server invite
.. image:: https://img.shields.io/github/sponsors/Pycord-Development?style=for-the-badge
:target: https://github.com/sponsors/Pycord-Development
:alt: GitHub Sponsors
.. image:: https://badges.crowdin.net/badge/dark/crowdin-on-light.png
:target: https://translations.pycord.dev/documentation/?utm_source=badge&utm_medium=referral&utm_campaign=badge-add-on
:alt: Crowdin | Agile localization for tech companies
======
Note
----
Pycord supports Python ``3.10`` - ``3.14``
Key Features
------------
- Modern Pythonic API using ``async`` and ``await``.
- Proper rate limit handling.
- Optimised for both speed and memory usage.
- Full application API support.
Installing
----------
**Python 3.10 or higher is required**
To install the library without full voice support, run the following command:
.. code:: sh
# Linux/macOS
python3 -m pip install -U py-cord
# Windows
py -3 -m pip install -U py-cord
Otherwise, to get full voice support, run the following command:
.. code:: sh
# Linux/macOS
python3 -m pip install -U "py-cord[voice]"
# Windows
py -3 -m pip install -U py-cord[voice]
To install additional packages for speedup, run the following command:
.. code:: sh
# Linux/macOS
python3 -m pip install -U "py-cord[speed]"
# Windows
py -3 -m pip install -U py-cord[speed]
To install the development version, do the following:
.. code:: sh
$ git clone https://github.com/Pycord-Development/pycord
$ cd pycord
$ python3 -m pip install -U .[voice]
or if you do not want to clone the repository:
.. code:: sh
# Linux/macOS
python3 -m pip install git+https://github.com/Pycord-Development/pycord
# Windows
py -3 -m pip install git+https://github.com/Pycord-Development/pycord
Optional Packages
~~~~~~~~~~~~~~~~~
* `PyNaCl <https://pypi.org/project/PyNaCl/>`__ (for voice support)
* `aiodns <https://pypi.org/project/aiodns/>`__, `brotlipy <https://pypi.org/project/brotlipy/>`__, `cchardet <https://pypi.org/project/cchardet/>`__ (for aiohttp speedup)
* `msgspec <https://pypi.org/project/msgspec/>`__ (for json speedup)
Please note that while installing voice support on Linux, you must install the following packages via your preferred 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.10-dev`` for Python 3.10)
Quick Example
-------------
.. code:: py
import discord
bot = discord.Bot()
@bot.slash_command()
async def hello(ctx, name: str = None):
name = name or ctx.author.name
await ctx.respond(f"Hello {name}!")
@bot.user_command(name="Say Hello")
async def hi(ctx, user):
await ctx.respond(f"{ctx.author.mention} says hello to {user.name}!")
bot.run("token")
Traditional Commands 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 code examples in the ``examples`` directory.
Note: Make sure you do not reveal your bot token to anyone, as it can grant access to your bot.
Useful Links
------------
- `Documentation <https://docs.pycord.dev/en/master/index.html>`_
- `Learn how to create Discord bots with Pycord <https://guide.pycord.dev>`_
- `Our Official Discord Server <https://pycord.dev/discord>`_
- `Official Discord Developers Server <https://discord.gg/discord-developers>`_
Translations
------------
.. image:: https://badges.awesome-crowdin.com/translation-200034237-5.png
:alt: Translation Status
@@ -0,0 +1,361 @@
discord/__init__.py,sha256=NcSj99SnHwcnw9IgJTEPC1fFWfuhIDPGI2lR8N3ZEUs,3236
discord/__main__.py,sha256=1PNcj810KQVI935e4991hT_6T7G8AYcnc_Esi2nTyVM,10637
discord/__pycache__/__init__.cpython-311.pyc,,
discord/__pycache__/__main__.cpython-311.pyc,,
discord/__pycache__/_version.cpython-311.pyc,,
discord/__pycache__/abc.cpython-311.pyc,,
discord/__pycache__/activity.cpython-311.pyc,,
discord/__pycache__/appinfo.cpython-311.pyc,,
discord/__pycache__/application_role_connection.cpython-311.pyc,,
discord/__pycache__/asset.cpython-311.pyc,,
discord/__pycache__/audit_logs.cpython-311.pyc,,
discord/__pycache__/automod.cpython-311.pyc,,
discord/__pycache__/backoff.cpython-311.pyc,,
discord/__pycache__/bot.cpython-311.pyc,,
discord/__pycache__/channel.cpython-311.pyc,,
discord/__pycache__/client.cpython-311.pyc,,
discord/__pycache__/cog.cpython-311.pyc,,
discord/__pycache__/collectibles.cpython-311.pyc,,
discord/__pycache__/colour.cpython-311.pyc,,
discord/__pycache__/components.cpython-311.pyc,,
discord/__pycache__/context_managers.cpython-311.pyc,,
discord/__pycache__/embeds.cpython-311.pyc,,
discord/__pycache__/emoji.cpython-311.pyc,,
discord/__pycache__/enums.cpython-311.pyc,,
discord/__pycache__/errors.cpython-311.pyc,,
discord/__pycache__/file.cpython-311.pyc,,
discord/__pycache__/flags.cpython-311.pyc,,
discord/__pycache__/gateway.cpython-311.pyc,,
discord/__pycache__/guild.cpython-311.pyc,,
discord/__pycache__/http.cpython-311.pyc,,
discord/__pycache__/incidents.cpython-311.pyc,,
discord/__pycache__/integrations.cpython-311.pyc,,
discord/__pycache__/interactions.cpython-311.pyc,,
discord/__pycache__/invite.cpython-311.pyc,,
discord/__pycache__/iterators.cpython-311.pyc,,
discord/__pycache__/member.cpython-311.pyc,,
discord/__pycache__/mentions.cpython-311.pyc,,
discord/__pycache__/message.cpython-311.pyc,,
discord/__pycache__/mixins.cpython-311.pyc,,
discord/__pycache__/monetization.cpython-311.pyc,,
discord/__pycache__/object.cpython-311.pyc,,
discord/__pycache__/oggparse.cpython-311.pyc,,
discord/__pycache__/onboarding.cpython-311.pyc,,
discord/__pycache__/opus.cpython-311.pyc,,
discord/__pycache__/partial_emoji.cpython-311.pyc,,
discord/__pycache__/permissions.cpython-311.pyc,,
discord/__pycache__/player.cpython-311.pyc,,
discord/__pycache__/poll.cpython-311.pyc,,
discord/__pycache__/primary_guild.cpython-311.pyc,,
discord/__pycache__/raw_models.cpython-311.pyc,,
discord/__pycache__/reaction.cpython-311.pyc,,
discord/__pycache__/role.cpython-311.pyc,,
discord/__pycache__/scheduled_events.cpython-311.pyc,,
discord/__pycache__/shard.cpython-311.pyc,,
discord/__pycache__/soundboard.cpython-311.pyc,,
discord/__pycache__/stage_instance.cpython-311.pyc,,
discord/__pycache__/state.cpython-311.pyc,,
discord/__pycache__/sticker.cpython-311.pyc,,
discord/__pycache__/team.cpython-311.pyc,,
discord/__pycache__/template.cpython-311.pyc,,
discord/__pycache__/threads.cpython-311.pyc,,
discord/__pycache__/user.cpython-311.pyc,,
discord/__pycache__/utils.cpython-311.pyc,,
discord/__pycache__/welcome_screen.cpython-311.pyc,,
discord/__pycache__/widget.cpython-311.pyc,,
discord/_version.py,sha256=ho02hgdbdAq21t4x4HMrS_XSNaQQe--51NRSOrwdtEY,5164
discord/abc.py,sha256=u46l6x5eJvITsqNzF4Gc0815j3YfcBKZzit15D_uEwg,70216
discord/activity.py,sha256=Hlp3fVbqsxo7tuVZ0l_zSj0Ze_wS0InzK6Ia43eIUIU,26686
discord/appinfo.py,sha256=9vczXjemfBLKveD01MzUDpuhrB2td8pOvtJkm2pO5rY,24288
discord/application_role_connection.py,sha256=prFf72L7bcUTireYsXH9N_KySift22Y-2MEaSBa1xhk,4888
discord/asset.py,sha256=M0DaYFooJ4XUYfsUom3V7PNx7tbn9PuFY0V4mtbK2Dk,15690
discord/audit_logs.py,sha256=s4Q1vZrtLP_3WfdXEW2Wyjh4DRaKYBtF5AYlGm2tr6s,24889
discord/automod.py,sha256=B2l7eqhsIrmGauHTYkt_hCWfp7MR1nA1_mgNOW5OyKM,18633
discord/backoff.py,sha256=9KUZmsiPB8vq_C7tvTx3tkGNbnrVvnGDJ_-imep7EJ0,3733
discord/bin/libopus-0.x64.dll,sha256=yE2oNujZJCGsMFhCz-WnJImO0J00DUaxKeIQvclEgTE,441856
discord/bin/libopus-0.x86.dll,sha256=O1v-EpUPNQQ-110rb6kCyTbWelBxYL92NY1nx2wdveg,366080
discord/bot.py,sha256=BjCSyRjUs3ABie_ZkZ94JsVJ6f-uTmYRJsN5iTkgJLQ,66138
discord/channel.py,sha256=Jq8mzbO4KTCczgCdbxv6jxlzDXBRQUk66IECle803Cg,123357
discord/client.py,sha256=q6hwgxZSMG8Nh60yA97CvCDT76jaLZsTC55xSQ_7CMA,77984
discord/cog.py,sha256=922Gvugh6GN0OTKlPmIrEh5I4WTeEqVonzcjwKb3suU,42073
discord/collectibles.py,sha256=LarNW6Vte-LdDTQbEGj0K91lcE6bflV11-1B-BRent0,3991
discord/colour.py,sha256=9eFYUoDaY9CVLA213ygww6PMCMvWUs0pQ0ziQz_zjdk,12400
discord/commands/__init__.py,sha256=_eh_29CJ2CiQZ__4ACwfSNpQGcnj5uMSr-HT_y8bgrc,1226
discord/commands/__pycache__/__init__.cpython-311.pyc,,
discord/commands/__pycache__/context.cpython-311.pyc,,
discord/commands/__pycache__/core.cpython-311.pyc,,
discord/commands/__pycache__/options.cpython-311.pyc,,
discord/commands/__pycache__/permissions.cpython-311.pyc,,
discord/commands/context.py,sha256=o7x3jH9UIOZ05DZyn5yuAtX_vQ7Iq3xdKkg0hQJLQvk,16251
discord/commands/core.py,sha256=XZ6jKdFYrq7ssvPYqkkPUA-QruXNUgXYco8Ht_5VD0M,85853
discord/commands/options.py,sha256=F24RGWqRO518hZ4nuokjKcqXb-YcSCxLK8YH0D0Ndjo,22558
discord/commands/permissions.py,sha256=8vGGP03vJmgDutcDq8ov4BRPRJ_K2I9OIaHSyKbwU_s,4506
discord/components.py,sha256=YhIcBZzBv9LAPw2hs2ypN3dWqDksURDHdEdwg0AJ4dM,59475
discord/context_managers.py,sha256=N0ToMbm0t1sfmimYm97c84f1P9BAUz_yYB6mHTbe9XU,2937
discord/embeds.py,sha256=U76geHySqZV0t67AsSNESnU_2CwR3MHJ4mA4PL8LvD0,30628
discord/emoji.py,sha256=QdTQvoGBZxtHbuc-gXx-OUTSHk63xTQqF-QBf9h5A2s,12899
discord/emojis.json,sha256=PMeu3f1S3JwgIXhb8YnA0UN2-IfaFNu9QgwpfoH2APU,247636
discord/enums.py,sha256=ecQCla_v32e3KyvlCrxakN4rcgFupNwUDN5pWL0WAfY,32903
discord/errors.py,sha256=nXqCHTB5DIeuhZMPUwjxcZAF3p7d8cF3dseBlJMkMdw,13598
discord/ext/bridge/__init__.py,sha256=_b_kvio5GCsyODd6vr_C9DgOHVHFj6fAgSFBKLRIans,1195
discord/ext/bridge/__pycache__/__init__.cpython-311.pyc,,
discord/ext/bridge/__pycache__/bot.cpython-311.pyc,,
discord/ext/bridge/__pycache__/context.cpython-311.pyc,,
discord/ext/bridge/__pycache__/core.cpython-311.pyc,,
discord/ext/bridge/bot.py,sha256=GEkJy12RBVidiKEDmLmIbtoiBmVBTL_ytMrwh99qzqg,7934
discord/ext/bridge/context.py,sha256=XTNnt5jUScwflUa5NGzoosH0cEnqNbCaqJysq2H1OVc,8087
discord/ext/bridge/core.py,sha256=Z2pn-GnOH08XJZIAKappoJ-scHqFDwbgHhIQv3kRevo,23523
discord/ext/commands/__init__.py,sha256=5wYz8s5lNdiIMCbEwhNtd7c-eAgZtTeOKnF6NK8k3xo,424
discord/ext/commands/__pycache__/__init__.cpython-311.pyc,,
discord/ext/commands/__pycache__/_types.cpython-311.pyc,,
discord/ext/commands/__pycache__/bot.cpython-311.pyc,,
discord/ext/commands/__pycache__/cog.cpython-311.pyc,,
discord/ext/commands/__pycache__/context.cpython-311.pyc,,
discord/ext/commands/__pycache__/converter.cpython-311.pyc,,
discord/ext/commands/__pycache__/cooldowns.cpython-311.pyc,,
discord/ext/commands/__pycache__/core.cpython-311.pyc,,
discord/ext/commands/__pycache__/errors.cpython-311.pyc,,
discord/ext/commands/__pycache__/flags.cpython-311.pyc,,
discord/ext/commands/__pycache__/help.cpython-311.pyc,,
discord/ext/commands/__pycache__/view.cpython-311.pyc,,
discord/ext/commands/_types.py,sha256=2BVNzTO69TwHaq3AAY711GENkZ1ABl9MX63e5bPjA8E,1806
discord/ext/commands/bot.py,sha256=uDG3CcZo-9AEKo7y19InyC0-cl4T3v6klXJT1FCtDpk,16203
discord/ext/commands/cog.py,sha256=IsW2G0_UNcpr27m3rKsDNf5DobTc6uIxpmIaPIuKvX0,3054
discord/ext/commands/context.py,sha256=6QHFT0CDBlmakfVkg3OJ83bzvkevJ1lY2j_0gzyjtos,14655
discord/ext/commands/converter.py,sha256=_vQFA7P_tWYy5WWVyy618nkOBRxR0rRk1iru-y1Wn7c,40533
discord/ext/commands/cooldowns.py,sha256=n86ontFeLvQ1-hw1nfACe_2JiFqCHKEm1_6IFNlPtRM,13008
discord/ext/commands/core.py,sha256=QLBfTSOUtuXD-82bocF7gv7py5B852j67F0nbWXGaxA,82186
discord/ext/commands/errors.py,sha256=4NIdmhtEiVsXcUQUiaPQ6e-vyVoVY30XQGpqsmnscDc,29368
discord/ext/commands/flags.py,sha256=12kXVgWVuroF9BMTyr40VJQKqZjvEoExmwaM3Mw8ETk,23659
discord/ext/commands/help.py,sha256=xVvHwF2Xs3xHLsIEjR5EFONBIVHkztQFMwyMu3Boia4,49305
discord/ext/commands/view.py,sha256=kZPiVElTv6gSRqozkYd1zmRZt3a72mbbx8p29N2oDDw,6082
discord/ext/pages/__init__.py,sha256=ar4PhiIyTimoqjb549IN_MVP2H0O-edT4KzkfXAkYkM,217
discord/ext/pages/__pycache__/__init__.cpython-311.pyc,,
discord/ext/pages/__pycache__/pagination.cpython-311.pyc,,
discord/ext/pages/pagination.py,sha256=GXh8icIvazJOMUhOB-oNOyNMrRgo9nzu30gJe54DaDM,55161
discord/ext/tasks/__init__.py,sha256=uGhiVx1ffDiMYjGaMkU-iHPaTehab70ZpueTpPnsN4c,29717
discord/ext/tasks/__pycache__/__init__.cpython-311.pyc,,
discord/file.py,sha256=433RoceqkDHelW_MHpJ_MQ3iGGdVcHlTg9XPXnZESP0,6637
discord/flags.py,sha256=OJd0OfY1dtKaq18J2W1ocWGodP9KNa0wjQjwAqOehoA,57014
discord/gateway.py,sha256=PYe-LYTQtSK6BANCX4aZ8pu0jNHGqJxRYDcoVIxpepE,25862
discord/guild.py,sha256=yv0npE8EoFyyQqGWax5dzQ6IZp4lkwvqh9nrXIDQTPc,158686
discord/http.py,sha256=DPrmoItG5j5VivKXakzFXUPP69ks1C1QDfYuBmEwa2k,105447
discord/incidents.py,sha256=X6VTGqoYpHdcdlRe63-NRzlcjnmhfusnDCRahuCkJWM,3183
discord/integrations.py,sha256=TFfLBuqD6k81Y4nuxeaIAq6vKkDxBqsQvE_jlWB833I,11816
discord/interactions.py,sha256=l2OQqsJ_OcYAwXuzabRKoh82y98lCY_b2YDLTzfmrY0,69993
discord/invite.py,sha256=jDJqj3InaVWfGbMmB_JhANfXhhUaqRqRog08gm2i-Xk,28164
discord/iterators.py,sha256=XUI-xRVxh9fTYl40Hma11Wc3UJixZUiHlbkGGMp03Zs,43295
discord/member.py,sha256=d_B8LaRmTTnNxrUrlWrCrlBNv3qatXdYa_h8cCYh9iw,45996
discord/mentions.py,sha256=N2rJEs5Lu61hz4BFfgaFYPM0Nbryxpb57u3GsyBsq-4,5749
discord/message.py,sha256=dnU0-LluFV_O9DLh23wRRxPMwqN3RvZRqvaLuaRrOvc,93364
discord/mixins.py,sha256=U5-Uie_a9wpb57_XhVXv_RM9Ig3QYao7ie-xVokzF8Q,1570
discord/monetization.py,sha256=BgB2jDbMZ-_MsH5pNHojKUzQVgheAJJl5ykU1T1Ip1M,12251
discord/object.py,sha256=MJRREAGis5kCJwMizMIL-1Cth12FIifvoD9VC4DKYQg,3609
discord/oggparse.py,sha256=T5cx8taPpb3h7amek9i2X_TRf7Na1lutnYhickSipvg,3735
discord/onboarding.py,sha256=jJpnaUi07T_pfDXK9fnJcpXTuFrI3oQr4bI2TpmdttE,16712
discord/opus.py,sha256=RZc04gKxuXhoXa7V0U9YRadFU_FiyUOg2O7LzYRMIN0,22233
discord/partial_emoji.py,sha256=OCOTm90xuEn03qoQapcZky0kVk_Pq36xoQYmBR0GQGU,7886
discord/permissions.py,sha256=Y9lBSK_LX-S94407Rb3e1-wTq96m6SOdMBXdyyzi9CM,29658
discord/player.py,sha256=vYwa1Jle-1sph-PgnyevsBbD0YM5MqVPcu0HmCCsY8s,31328
discord/poll.py,sha256=d4pvUFwbyuYq12KRqLGQGQSjZMocAZZIgdGCk9Te1X8,18116
discord/primary_guild.py,sha256=HR_g0Z8z9QFkGxz9s1M9_oLF_D1ZTjBwKes9mnTqEgo,3210
discord/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
discord/raw_models.py,sha256=KC2sXFqAjnZn2MEIMuiMHm4xCq1hbBVy3_cPe1B505c,37494
discord/reaction.py,sha256=XPbFiyZ3eHhnAeqxRlbwB4AKL5UkHjXtDkUSzc17T9k,9548
discord/role.py,sha256=pFFLlGR0TEZA1Fl4NHfl3sjb6OPVdoUod3JHhgN3lSk,30834
discord/scheduled_events.py,sha256=RD8SrPQ57B0dG7lmYIxwAwV7v860t7bznOmgY5_Z2_g,19584
discord/shard.py,sha256=gO263IRFLecz-9-GPO2EOSHTogK-9BGnec_DpLBXKK0,19808
discord/sinks/__init__.py,sha256=mdkskN855InTiopETToe2Yy9rodn7cj8kyI7fnmAXa8,374
discord/sinks/__pycache__/__init__.cpython-311.pyc,,
discord/sinks/__pycache__/core.cpython-311.pyc,,
discord/sinks/__pycache__/errors.cpython-311.pyc,,
discord/sinks/__pycache__/m4a.cpython-311.pyc,,
discord/sinks/__pycache__/mka.cpython-311.pyc,,
discord/sinks/__pycache__/mkv.cpython-311.pyc,,
discord/sinks/__pycache__/mp3.cpython-311.pyc,,
discord/sinks/__pycache__/mp4.cpython-311.pyc,,
discord/sinks/__pycache__/ogg.cpython-311.pyc,,
discord/sinks/__pycache__/pcm.cpython-311.pyc,,
discord/sinks/__pycache__/wave.cpython-311.pyc,,
discord/sinks/core.py,sha256=7D9F4mBJGOIhFLhNTAks1xwCG7LJZ93eEE5pWkPAvuI,6714
discord/sinks/errors.py,sha256=olXDW5GEO69YNQf0UcKIFqHNQ21mdSTO75zWNxaSnUQ,2452
discord/sinks/m4a.py,sha256=TCdN6xPMH3ifu0ancIm27E2tiKQyIUhfGNoJ44M2tmU,3216
discord/sinks/mka.py,sha256=VeCgwPGG6OUI44n-LJC1Klz0C0xFL953JWERupU53O0,2990
discord/sinks/mkv.py,sha256=Hhvtvg22tXMZobkyLXGMDW2jjGiLSzFxD3lBeYYuwik,2959
discord/sinks/mp3.py,sha256=BeOVlD1fNzBE4biuZ5j7EDqFA0XiLFLF9Dt4KQ6PniM,2985
discord/sinks/mp4.py,sha256=juB0are4fqA9S5Joo7GEN1zZTeKXb6r3BFuf1E8BeYs,3215
discord/sinks/ogg.py,sha256=qO3FjcqwX4_naCRaRIeG5hBdCskbsICAmvO0oEXy9F0,2985
discord/sinks/pcm.py,sha256=QFrMXzY2D_n5_amAVAjOErjl2MdqLIiPd_m4qmgFCMA,1567
discord/sinks/wave.py,sha256=ii06n7Rr4lrNVbeMTZiMTUvqEEYrWdDwQzEb7IdXnkw,2318
discord/soundboard.py,sha256=TMfNv6UFl6XnUVqBqO7GELVWwQhMMAvxf-PinpPNw1w,8891
discord/stage_instance.py,sha256=m1Y7FudWJ8dvgDKoqmMvv3HlCLPco5KoyXwCPSR-nbs,6324
discord/state.py,sha256=InhztX-0yQmMYkvEWZD54IZ5MOImgMoxLCdmrgQU8iM,85739
discord/sticker.py,sha256=WgBfov-rhslvikTTlnOTHwh0HdGlGJOgL7uItWUZYO8,16519
discord/team.py,sha256=zcBJDRJQWfdi19oFaqG0jhS32XEJSysk_n2swkQBMk4,5863
discord/template.py,sha256=JMOzTxLHsIcQhcXsQE8Tnk623HIvKeYVD5JkWol_tkY,8224
discord/threads.py,sha256=_VmvaxWFwOjQUVtDLR2ioV6pkBWAYCbGQmQ-GwDATVE,30935
discord/types/__init__.py,sha256=xhBUNX_mctJmlEY5ZiDnRQnkIxGuomDspn2Zbgk9j6M,183
discord/types/__pycache__/__init__.cpython-311.pyc,,
discord/types/__pycache__/activity.cpython-311.pyc,,
discord/types/__pycache__/appinfo.cpython-311.pyc,,
discord/types/__pycache__/application_role_connection.cpython-311.pyc,,
discord/types/__pycache__/audit_log.cpython-311.pyc,,
discord/types/__pycache__/automod.cpython-311.pyc,,
discord/types/__pycache__/channel.cpython-311.pyc,,
discord/types/__pycache__/collectibles.cpython-311.pyc,,
discord/types/__pycache__/components.cpython-311.pyc,,
discord/types/__pycache__/embed.cpython-311.pyc,,
discord/types/__pycache__/emoji.cpython-311.pyc,,
discord/types/__pycache__/gateway.cpython-311.pyc,,
discord/types/__pycache__/guild.cpython-311.pyc,,
discord/types/__pycache__/integration.cpython-311.pyc,,
discord/types/__pycache__/interactions.cpython-311.pyc,,
discord/types/__pycache__/invite.cpython-311.pyc,,
discord/types/__pycache__/member.cpython-311.pyc,,
discord/types/__pycache__/message.cpython-311.pyc,,
discord/types/__pycache__/monetization.cpython-311.pyc,,
discord/types/__pycache__/onboarding.cpython-311.pyc,,
discord/types/__pycache__/poll.cpython-311.pyc,,
discord/types/__pycache__/primary_guild.cpython-311.pyc,,
discord/types/__pycache__/raw_models.cpython-311.pyc,,
discord/types/__pycache__/role.cpython-311.pyc,,
discord/types/__pycache__/scheduled_events.cpython-311.pyc,,
discord/types/__pycache__/snowflake.cpython-311.pyc,,
discord/types/__pycache__/soundboard.cpython-311.pyc,,
discord/types/__pycache__/sticker.cpython-311.pyc,,
discord/types/__pycache__/team.cpython-311.pyc,,
discord/types/__pycache__/template.cpython-311.pyc,,
discord/types/__pycache__/threads.cpython-311.pyc,,
discord/types/__pycache__/user.cpython-311.pyc,,
discord/types/__pycache__/voice.cpython-311.pyc,,
discord/types/__pycache__/webhook.cpython-311.pyc,,
discord/types/__pycache__/welcome_screen.cpython-311.pyc,,
discord/types/__pycache__/widget.cpython-311.pyc,,
discord/types/activity.py,sha256=iPf0XEjDEgfxu5oCACT3ejb-KUw2FSTyo_bTCm1dzyQ,2759
discord/types/appinfo.py,sha256=pTdOZpcDavtYza95x9geEqiwC7u5Hw71DBYOdRqcGuA,3042
discord/types/application_role_connection.py,sha256=sowuIgZEVxd62VkVG3NokGBIYTCwMNETSWO9yOAZCyM,1553
discord/types/audit_log.py,sha256=gOhvESfpntZ06ld2xks-FGfa3ImMwCAEp-12-3YhFFc,6772
discord/types/automod.py,sha256=vuiZHB_4WtodhqaTZwCX30N48aOW08hIQRJW_Tqbhb0,2796
discord/types/channel.py,sha256=CrehPQY_Q-WKSlzAVUyBtMd1Y_fngrkDj1DpXqnxPWg,5050
discord/types/collectibles.py,sha256=WDn570kK9FNupWwNkgeW9Kg0j5OCnY4Ti0yxSOWS8Hc,1432
discord/types/components.py,sha256=-DpCQwjI_VdrQdRVKKSPxJ8MjivVCYGox77W1hstOLc,6403
discord/types/embed.py,sha256=boHwVFXV9JJj0a5kAhieygM4YxCOS9Yx65Tm4B_DZ8M,2440
discord/types/emoji.py,sha256=ryepMYWojzV2HlvxIlRCmKjJbNXCWKdAI6O27rgigFs,1589
discord/types/gateway.py,sha256=SlAh5iRRUrjDlIviU95ViM8XRY3XcOqjf3oniKJ16ig,1409
discord/types/guild.py,sha256=Lm2Hgc3YGM2F0RVf_g32sOdtvfIW7WFDwXVSikSGVcg,6002
discord/types/integration.py,sha256=mAGOBBE4SY0xMmb2vQjP8CpYAzL5zvtbbPHR-D-dx3U,2264
discord/types/interactions.py,sha256=hcgwvK2HaQEldTwcQNBgmOaqcXqdGfBq9OVUA7g0SZ8,8730
discord/types/invite.py,sha256=pmE7RHDvV78gix7DidryCsK2uF6ndkk12bnsvlUAikw,3089
discord/types/member.py,sha256=lB4ZdjdiCQ_Iai0zmrM1KIHG2ZUKBPpTahgzO4UvV-A,2713
discord/types/message.py,sha256=TyrUNOPTIyV0YFloXmIB90gvew2tGWdJ4FOffAdlMyA,5229
discord/types/monetization.py,sha256=oa7l6lchq1qewe9gM5tRmhE4rC0jKkcfxpb9Jw0d1ow,2320
discord/types/onboarding.py,sha256=lHpaTG3K3_wKJ0K-pycNJyp8TGCZaNry0g8nPHfHN94,2071
discord/types/poll.py,sha256=U6gDFH3t3FUPCM6QzD9iwbo1oAQoruU10Dlw16WXlsE,1916
discord/types/primary_guild.py,sha256=mBt1T7Een2Asq--i8Ykhg6dqAjeWJ6w4WxRiTtdgSew,1329
discord/types/raw_models.py,sha256=99Ygc8ANglMLQ6wGj7oBHQhOeFp-jioYTp-tDveTRFU,4385
discord/types/role.py,sha256=KNedjZUC8phDVm5c-tijkv9N09yDiSXuO1N1qe8b-Xs,2059
discord/types/scheduled_events.py,sha256=hCtwpdZX_g0ZxMdwsttdtSV1nTUQLYo8d-38OI8-ZEc,2100
discord/types/snowflake.py,sha256=WPpyiipKNPuKDC1UGLNcZHD1U-JQ0iyUB4PT4TvW54o,1225
discord/types/soundboard.py,sha256=KrbbI4jTgbQHas1jTNeGhm1BgwkAusmqHrQTsqGTRRo,1503
discord/types/sticker.py,sha256=hRD11idSG7-KGVe-09oT1wpTaS7V4eSAD6Bkv9VQ2bY,2364
discord/types/team.py,sha256=tffve5DwfZKHChZT81dOe3paUH2rhEEe53UmUK2A2jI,1510
discord/types/template.py,sha256=nKPhsdjtag_SZTT2unu493Qvts4zRzHowEFpjFDMVHg,1634
discord/types/threads.py,sha256=Zd6w9V27hxwrzx_a0JEFR8UL2FONgsSmrqjj4llkbOs,2317
discord/types/user.py,sha256=QQsNMssAeBP5gp-Ct01lpe-MMDftfUQLYoNbJsp2iEY,1777
discord/types/voice.py,sha256=tg3YMeI1pTvJ7fD5IyU5DKh-vqsB5lti9YTMBozYqmc,2355
discord/types/webhook.py,sha256=r2XU1b_IOzZHjpW3gkr20TIXYl_j8rcbSLGtlGoY5cA,1992
discord/types/welcome_screen.py,sha256=N2kZQ1_ed6GLGjVsSBuz6cwo78gwMFET7Bd4KP2TDfY,1482
discord/types/widget.py,sha256=fgwu_U7-OZx_RBFX5u42u_uATFiJz5cUwyAd99BBi_w,1891
discord/ui/__init__.py,sha256=Vz1GV3z8yMqxFRmdn45pHPNqGbAMofJ00L_IgTbmMeE,664
discord/ui/__pycache__/__init__.cpython-311.pyc,,
discord/ui/__pycache__/action_row.cpython-311.pyc,,
discord/ui/__pycache__/button.cpython-311.pyc,,
discord/ui/__pycache__/checkbox.cpython-311.pyc,,
discord/ui/__pycache__/checkbox_group.cpython-311.pyc,,
discord/ui/__pycache__/container.cpython-311.pyc,,
discord/ui/__pycache__/core.cpython-311.pyc,,
discord/ui/__pycache__/file.cpython-311.pyc,,
discord/ui/__pycache__/file_upload.cpython-311.pyc,,
discord/ui/__pycache__/input_text.cpython-311.pyc,,
discord/ui/__pycache__/item.cpython-311.pyc,,
discord/ui/__pycache__/label.cpython-311.pyc,,
discord/ui/__pycache__/media_gallery.cpython-311.pyc,,
discord/ui/__pycache__/modal.cpython-311.pyc,,
discord/ui/__pycache__/radio_group.cpython-311.pyc,,
discord/ui/__pycache__/section.cpython-311.pyc,,
discord/ui/__pycache__/select.cpython-311.pyc,,
discord/ui/__pycache__/separator.cpython-311.pyc,,
discord/ui/__pycache__/text_display.cpython-311.pyc,,
discord/ui/__pycache__/thumbnail.cpython-311.pyc,,
discord/ui/__pycache__/view.cpython-311.pyc,,
discord/ui/action_row.py,sha256=omX9g9vq6gd_RGcYJXWfMuyjvSsszXgTRD5Y-iw6gjM,15513
discord/ui/button.py,sha256=Vi461rt5PF8g8yyLTPrDaP40-djqTns0VskWwlsZxx0,14969
discord/ui/checkbox.py,sha256=dhPVosrCAMMYWJCzuF6ynHa-ZHZOrYgyi2Fh8UD7heg,4853
discord/ui/checkbox_group.py,sha256=DZ0cgts_8TeohykQedC0K6an1lSzrXPSDVBd2lJYvf0,10452
discord/ui/container.py,sha256=HVCC9oaEO8Z3Sl_ssWNPI_D5DAnmQUzE3af5coZ3wNM,14622
discord/ui/core.py,sha256=07vchnhzQMGSgNR0op2zZV0K-Ue-hnTNGeCE4Cmeerg,5663
discord/ui/file.py,sha256=kUJNW0Umz_5-lkD8OG_VkyGx_8CtCl1goj7nfK0vS3k,4996
discord/ui/file_upload.py,sha256=QsBF_HJVMvzM6QA2H_ZVD1Ndul0PTxX5cVV6XvRbpmM,7474
discord/ui/input_text.py,sha256=PdkRwEUNXEiH4q1AMziWzWXcjNnfZqAjBByTGyOrYZA,11330
discord/ui/item.py,sha256=luMKS5NbcJKSjzH6gXpNo0V44y704dYKLbIu8lnsQYc,8290
discord/ui/label.py,sha256=AsX7kjjoCX0pXbRcPFwmv4g7p5b6XYaeTUMvSR65Pwk,19364
discord/ui/media_gallery.py,sha256=Yl4sOQx4kdIqGmYAno9HrmsX8pTlW1FzyQ_aaUSJQPg,5879
discord/ui/modal.py,sha256=3YTObUbldag8OrIDdPbhUakbirrPZHlZsoUSCnt65-w,17070
discord/ui/radio_group.py,sha256=NlUminEga81E7H8fSTE7G_JrdFW1_vq8iLxL7kS3mW0,8332
discord/ui/section.py,sha256=mTfIKQyqHCED4o0Lw4HSP3fXL2bxFQgs-0KOHoyQ01E,12547
discord/ui/select.py,sha256=C2YL6sn0I-pBH4tqpxdIzcLZO7a9gbWjeuNHNDE2J5Q,48823
discord/ui/separator.py,sha256=MH6ZOCWXbLMrJ3ysAjxwcKb_GwzvvTtkMPrAUu25gPw,4057
discord/ui/text_display.py,sha256=w888Mm2rSJDmNjjXwVWwjE6pUsXJMGZEZwYbqfkn60Q,3639
discord/ui/thumbnail.py,sha256=l-4b9QRdR_LSmiZmdvQVXThJe6h_016JnPLDh9W71tc,5010
discord/ui/view.py,sha256=xjpNIumpO22-Qd8jIMNKTSCbZDx4n8YvAbeva3dYKVE,35607
discord/user.py,sha256=VY3s046Y4BaeG_qiCKBHVbgfvDrxGjlvozeU3vqKF4I,23462
discord/utils.py,sha256=uGPH2bCQ3ojpeD0dykrCdGsuEi-aJVevWCkgYjdvVRE,52116
discord/voice/__init__.py,sha256=6SV1b5A7EW6ZTBAa4kLUmee83zk58zqkzhiaV9HBKmg,462
discord/voice/__pycache__/__init__.cpython-311.pyc,,
discord/voice/__pycache__/_types.cpython-311.pyc,,
discord/voice/__pycache__/client.cpython-311.pyc,,
discord/voice/__pycache__/enums.cpython-311.pyc,,
discord/voice/__pycache__/gateway.cpython-311.pyc,,
discord/voice/__pycache__/state.cpython-311.pyc,,
discord/voice/_types.py,sha256=3HEQhBsdHeAnythInkb0AvIl16GXI7vsss35nu_Qr0Y,6468
discord/voice/client.py,sha256=D5gPSLyNF4RsOIV5j6_Ueyv5FGCsVY-v57x_y1hgXoQ,28502
discord/voice/enums.py,sha256=O71GCm2VZDK6N7UMQt0tLbb0Ea6WYeXaUZ5FShxscbM,2404
discord/voice/gateway.py,sha256=lOGA-lENMQTSDKuZsrupU-H5ol4Nu8e3Ed1YR7TyQzw,18829
discord/voice/packets/__init__.py,sha256=Vjp7dlOdNREfk68mJ-Yolxhklth0pGFdkBeGX7SEW5s,1400
discord/voice/packets/__pycache__/__init__.cpython-311.pyc,,
discord/voice/packets/__pycache__/core.cpython-311.pyc,,
discord/voice/packets/__pycache__/rtp.cpython-311.pyc,,
discord/voice/packets/core.py,sha256=oxx_JxFo5d-aG9hlc7Nnxqx04IkiH-BPcu5d-8JY7OA,3230
discord/voice/packets/rtp.py,sha256=7ld4mT-TPv7ck7rGuMPf4DGJ115GwHlmi8SaIZ93aY8,9679
discord/voice/receive/__init__.py,sha256=5sEH7pChNGl4XRKpSdCJ5EE4_GfpDJWLECCrQYcgj8s,1292
discord/voice/receive/__pycache__/__init__.cpython-311.pyc,,
discord/voice/receive/__pycache__/reader.cpython-311.pyc,,
discord/voice/receive/__pycache__/router.cpython-311.pyc,,
discord/voice/receive/reader.py,sha256=ChYK34XjcBCMyKiIhm4rpWxRqQmwvS0fn8KCFzxPAvI,19389
discord/voice/receive/router.py,sha256=46cVb10JgBacx40xNTlzkDL3wS-WiIMxJrLfYFTo0h8,8056
discord/voice/state.py,sha256=hdq-Y5usdXUdaVP4ilz-r2uSMaga-3I6V3RwvdakQCs,34433
discord/voice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
discord/voice/utils/__pycache__/__init__.cpython-311.pyc,,
discord/voice/utils/__pycache__/buffer.cpython-311.pyc,,
discord/voice/utils/__pycache__/dependencies.cpython-311.pyc,,
discord/voice/utils/__pycache__/multidataevent.cpython-311.pyc,,
discord/voice/utils/__pycache__/wrapped.cpython-311.pyc,,
discord/voice/utils/buffer.py,sha256=g_nk0eqCfGvjQlzto3c8xnOGlQd59oTMWLySIAbXCA8,6198
discord/voice/utils/dependencies.py,sha256=GEO-WimUwPFRh8wX77goGQMOR6uVWQZEsdkHVxKGnrE,1397
discord/voice/utils/multidataevent.py,sha256=2bOSmuELgLkARecrYMDcUIxnwQk_0RkBRBHg8uCuGmk,2454
discord/voice/utils/wrapped.py,sha256=FQs2dp4pxHxB2ZVb_ZhMd-whQ-E5EwlmbKfaX9GevNE,1325
discord/webhook/__init__.py,sha256=-XFpBWnb8KL_AXoOKq_pVtNl5GbsNxJH-WigfrHaMr4,237
discord/webhook/__pycache__/__init__.cpython-311.pyc,,
discord/webhook/__pycache__/async_.cpython-311.pyc,,
discord/webhook/__pycache__/sync.cpython-311.pyc,,
discord/webhook/async_.py,sha256=2JhbjEypUrAABZQvz4LGVJhjvDCefz8nhV3FPqAhsqk,71548
discord/webhook/sync.py,sha256=wUuPUZ7MXLy2CtTkOGt7gcztIWrZBWmdiAWSIrquM08,42829
discord/welcome_screen.py,sha256=-GKMQVYOIpNZhxCBard7R8UFtwxvJGtbrU2ASc_WwvA,7797
discord/widget.py,sha256=qR2n10ikTCyv1u_FB0PqMdZwzVAsRYFbYR79Zv7LgLc,10490
py_cord-2.8.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
py_cord-2.8.0.dist-info/METADATA,sha256=pnT_T3ZC9XDAsJSHpVNuCyETb430rxwO97pG2pLmEqA,7652
py_cord-2.8.0.dist-info/RECORD,,
py_cord-2.8.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
py_cord-2.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
py_cord-2.8.0.dist-info/licenses/LICENSE,sha256=NkXqm3BKSrIoDH-EvovlbjysZKjeA9XMnlTOULew1To,1124
py_cord-2.8.0.dist-info/top_level.txt,sha256=fJkrNbR-_8ubMBUcDEJBcfkpECrvSEmMrNKgvLlQFoM,8
@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: true
Tag: py3-none-any
@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2015-2021 Rapptz
Copyright (c) 2021-present Pycord 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.
@@ -0,0 +1 @@
discord