├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ ├── custom.js │ ├── settings.js │ └── style.css ├── _templates │ ├── base.html │ ├── page.html │ └── search.html ├── api.rst ├── changelog.rst ├── conf.py ├── ext │ └── commands │ │ ├── api.rst │ │ ├── cogs.rst │ │ ├── commands.rst │ │ ├── extensions.rst │ │ └── index.rst ├── faq.rst ├── help.rst ├── index.rst ├── intro.rst ├── localexts │ ├── attributetable.py │ └── viewcode.py ├── make.bat ├── resources │ └── images │ │ └── authorization_code.png └── usedby.rst ├── examples ├── api_integrations │ ├── ben_bot.py │ └── fortnite_api.py ├── basic_bot.py ├── discord_integration.py ├── multiple_clients.py ├── multiple_sub_clients.py ├── subclass_client.py └── web │ └── sanic_integration.py ├── fortnitepy ├── __init__.py ├── auth.py ├── avatar.py ├── client.py ├── enums.py ├── errors.py ├── ext │ └── commands │ │ ├── __init__.py │ │ ├── _types.py │ │ ├── bot.py │ │ ├── cog.py │ │ ├── context.py │ │ ├── converter.py │ │ ├── cooldown.py │ │ ├── core.py │ │ ├── errors.py │ │ ├── help.py │ │ ├── typedefs.py │ │ └── view.py ├── friend.py ├── http.py ├── message.py ├── news.py ├── party.py ├── playlist.py ├── presence.py ├── stats.py ├── store.py ├── typedefs.py ├── user.py ├── utils.py └── xmpp.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/_static/custom.js -------------------------------------------------------------------------------- /docs/_static/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/_static/settings.js -------------------------------------------------------------------------------- /docs/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/_static/style.css -------------------------------------------------------------------------------- /docs/_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/_templates/base.html -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/_templates/search.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/ext/commands/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/ext/commands/api.rst -------------------------------------------------------------------------------- /docs/ext/commands/cogs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/ext/commands/cogs.rst -------------------------------------------------------------------------------- /docs/ext/commands/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/ext/commands/commands.rst -------------------------------------------------------------------------------- /docs/ext/commands/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/ext/commands/extensions.rst -------------------------------------------------------------------------------- /docs/ext/commands/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/ext/commands/index.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/help.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/localexts/attributetable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/localexts/attributetable.py -------------------------------------------------------------------------------- /docs/localexts/viewcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/localexts/viewcode.py -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/resources/images/authorization_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/resources/images/authorization_code.png -------------------------------------------------------------------------------- /docs/usedby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/docs/usedby.rst -------------------------------------------------------------------------------- /examples/api_integrations/ben_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/api_integrations/ben_bot.py -------------------------------------------------------------------------------- /examples/api_integrations/fortnite_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/api_integrations/fortnite_api.py -------------------------------------------------------------------------------- /examples/basic_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/basic_bot.py -------------------------------------------------------------------------------- /examples/discord_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/discord_integration.py -------------------------------------------------------------------------------- /examples/multiple_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/multiple_clients.py -------------------------------------------------------------------------------- /examples/multiple_sub_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/multiple_sub_clients.py -------------------------------------------------------------------------------- /examples/subclass_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/subclass_client.py -------------------------------------------------------------------------------- /examples/web/sanic_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/examples/web/sanic_integration.py -------------------------------------------------------------------------------- /fortnitepy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/__init__.py -------------------------------------------------------------------------------- /fortnitepy/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/auth.py -------------------------------------------------------------------------------- /fortnitepy/avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/avatar.py -------------------------------------------------------------------------------- /fortnitepy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/client.py -------------------------------------------------------------------------------- /fortnitepy/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/enums.py -------------------------------------------------------------------------------- /fortnitepy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/errors.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/__init__.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/_types.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/bot.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/cog.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/context.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/converter.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/cooldown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/cooldown.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/core.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/errors.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/help.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/typedefs.py -------------------------------------------------------------------------------- /fortnitepy/ext/commands/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/ext/commands/view.py -------------------------------------------------------------------------------- /fortnitepy/friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/friend.py -------------------------------------------------------------------------------- /fortnitepy/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/http.py -------------------------------------------------------------------------------- /fortnitepy/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/message.py -------------------------------------------------------------------------------- /fortnitepy/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/news.py -------------------------------------------------------------------------------- /fortnitepy/party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/party.py -------------------------------------------------------------------------------- /fortnitepy/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/playlist.py -------------------------------------------------------------------------------- /fortnitepy/presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/presence.py -------------------------------------------------------------------------------- /fortnitepy/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/stats.py -------------------------------------------------------------------------------- /fortnitepy/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/store.py -------------------------------------------------------------------------------- /fortnitepy/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/typedefs.py -------------------------------------------------------------------------------- /fortnitepy/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/user.py -------------------------------------------------------------------------------- /fortnitepy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/utils.py -------------------------------------------------------------------------------- /fortnitepy/xmpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/fortnitepy/xmpp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Terbau/fortnitepy/HEAD/setup.py --------------------------------------------------------------------------------