├── .gitignore ├── LICENSE ├── README.md ├── discordsdk ├── __init__.py ├── achievement.py ├── activity.py ├── application.py ├── discord.py ├── enum.py ├── event.py ├── exception.py ├── image.py ├── lobby.py ├── model.py ├── network.py ├── overlay.py ├── relationship.py ├── sdk.py ├── storage.py ├── store.py ├── user.py └── voice.py ├── docs ├── Makefile ├── conf.py ├── discordsdk.rst ├── index.rst ├── make.bat ├── modules.rst └── requirements.txt ├── examples ├── activity.py ├── image.py ├── network.py ├── relationship.py └── user.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/README.md -------------------------------------------------------------------------------- /discordsdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/__init__.py -------------------------------------------------------------------------------- /discordsdk/achievement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/achievement.py -------------------------------------------------------------------------------- /discordsdk/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/activity.py -------------------------------------------------------------------------------- /discordsdk/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/application.py -------------------------------------------------------------------------------- /discordsdk/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/discord.py -------------------------------------------------------------------------------- /discordsdk/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/enum.py -------------------------------------------------------------------------------- /discordsdk/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/event.py -------------------------------------------------------------------------------- /discordsdk/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/exception.py -------------------------------------------------------------------------------- /discordsdk/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/image.py -------------------------------------------------------------------------------- /discordsdk/lobby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/lobby.py -------------------------------------------------------------------------------- /discordsdk/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/model.py -------------------------------------------------------------------------------- /discordsdk/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/network.py -------------------------------------------------------------------------------- /discordsdk/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/overlay.py -------------------------------------------------------------------------------- /discordsdk/relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/relationship.py -------------------------------------------------------------------------------- /discordsdk/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/sdk.py -------------------------------------------------------------------------------- /discordsdk/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/storage.py -------------------------------------------------------------------------------- /discordsdk/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/store.py -------------------------------------------------------------------------------- /discordsdk/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/user.py -------------------------------------------------------------------------------- /discordsdk/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/discordsdk/voice.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/discordsdk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/docs/discordsdk.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | furo 2 | -------------------------------------------------------------------------------- /examples/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/examples/activity.py -------------------------------------------------------------------------------- /examples/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/examples/image.py -------------------------------------------------------------------------------- /examples/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/examples/network.py -------------------------------------------------------------------------------- /examples/relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/examples/relationship.py -------------------------------------------------------------------------------- /examples/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/examples/user.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LennyPhoenix/py-discord-sdk/HEAD/setup.py --------------------------------------------------------------------------------