├── .coveragerc ├── .github ├── dependabot.yaml └── workflows │ ├── i18n.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── codecov.yml ├── docs ├── Makefile ├── blacklist_app.rst ├── conf.py ├── creating_tokens_manually.rst ├── customizing_token_claims.rst ├── development_and_contributing.rst ├── drf_yasg_integration.rst ├── getting_started.rst ├── index.rst ├── rest_framework_simplejwt.rst ├── settings.rst ├── stateless_user_authentication.rst └── token_types.rst ├── inlang.config.js ├── licenses ├── LICENSE-django-rest-framework-jwt └── LICENSE-django-rest-framework.md ├── pytest.ini ├── rest_framework_simplejwt ├── __init__.py ├── authentication.py ├── backends.py ├── exceptions.py ├── locale │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_CL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa_IR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id_ID │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── kk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk_UA │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── models.py ├── py.typed ├── serializers.py ├── settings.py ├── state.py ├── token_blacklist │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── flushexpiredtokens.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_outstandingtoken_jti_hex.py │ │ ├── 0003_auto_20171017_2007.py │ │ ├── 0004_auto_20171017_2013.py │ │ ├── 0005_remove_outstandingtoken_jti.py │ │ ├── 0006_auto_20171017_2113.py │ │ ├── 0007_auto_20171017_2214.py │ │ ├── 0008_migrate_to_bigautofield.py │ │ ├── 0010_fix_migrate_to_bigautofield.py │ │ ├── 0011_linearizes_history.py │ │ ├── 0012_alter_outstandingtoken_user.py │ │ ├── 0013_alter_blacklistedtoken_options_and_more.py │ │ └── __init__.py │ └── models.py ├── tokens.py ├── utils.py └── views.py ├── scripts └── i18n_updater.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── keys.py ├── models.py ├── test_authentication.py ├── test_backends.py ├── test_init.py ├── test_integration.py ├── test_migrations.py ├── test_models.py ├── test_serializers.py ├── test_token_blacklist.py ├── test_tokens.py ├── test_utils.py ├── test_views.py ├── urls.py ├── utils.py └── views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.github/workflows/i18n.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/blacklist_app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/blacklist_app.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/creating_tokens_manually.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/creating_tokens_manually.rst -------------------------------------------------------------------------------- /docs/customizing_token_claims.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/customizing_token_claims.rst -------------------------------------------------------------------------------- /docs/development_and_contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/development_and_contributing.rst -------------------------------------------------------------------------------- /docs/drf_yasg_integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/drf_yasg_integration.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/rest_framework_simplejwt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/rest_framework_simplejwt.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/stateless_user_authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/stateless_user_authentication.rst -------------------------------------------------------------------------------- /docs/token_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/docs/token_types.rst -------------------------------------------------------------------------------- /inlang.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/inlang.config.js -------------------------------------------------------------------------------- /licenses/LICENSE-django-rest-framework-jwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/licenses/LICENSE-django-rest-framework-jwt -------------------------------------------------------------------------------- /licenses/LICENSE-django-rest-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/licenses/LICENSE-django-rest-framework.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/pytest.ini -------------------------------------------------------------------------------- /rest_framework_simplejwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/__init__.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/authentication.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/backends.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/exceptions.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/es_AR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/es_AR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/es_CL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/es_CL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/es_CL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/es_CL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/fa_IR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/fa_IR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/fa_IR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/fa_IR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/he_IL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/he_IL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/he_IL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/he_IL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/id_ID/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/id_ID/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/id_ID/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/id_ID/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/it_IT/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/it_IT/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/it_IT/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/it_IT/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/kk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/kk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ko_KR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ko_KR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ko_KR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ko_KR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/nl_NL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/nl_NL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/nl_NL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/nl_NL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/pl_PL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/pl_PL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ru_RU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ru_RU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/ru_RU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/ru_RU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/sl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/uk_UA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/uk_UA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/uk_UA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/uk_UA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rest_framework_simplejwt/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rest_framework_simplejwt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/models.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_simplejwt/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/serializers.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/settings.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/state.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/__init__.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/admin.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/apps.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/management/commands/flushexpiredtokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/management/commands/flushexpiredtokens.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0001_initial.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0002_outstandingtoken_jti_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0002_outstandingtoken_jti_hex.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0003_auto_20171017_2007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0003_auto_20171017_2007.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0004_auto_20171017_2013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0004_auto_20171017_2013.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0005_remove_outstandingtoken_jti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0005_remove_outstandingtoken_jti.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0006_auto_20171017_2113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0006_auto_20171017_2113.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0007_auto_20171017_2214.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0007_auto_20171017_2214.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0008_migrate_to_bigautofield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0008_migrate_to_bigautofield.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0010_fix_migrate_to_bigautofield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0010_fix_migrate_to_bigautofield.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0011_linearizes_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0011_linearizes_history.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0012_alter_outstandingtoken_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0012_alter_outstandingtoken_user.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/0013_alter_blacklistedtoken_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/migrations/0013_alter_blacklistedtoken_options_and_more.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_simplejwt/token_blacklist/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/token_blacklist/models.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/tokens.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/utils.py -------------------------------------------------------------------------------- /rest_framework_simplejwt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/rest_framework_simplejwt/views.py -------------------------------------------------------------------------------- /scripts/i18n_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/scripts/i18n_updater.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENSE.txt 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/keys.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- 1 | # Add models here 2 | -------------------------------------------------------------------------------- /tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_authentication.py -------------------------------------------------------------------------------- /tests/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_backends.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_migrations.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_serializers.py -------------------------------------------------------------------------------- /tests/test_token_blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_token_blacklist.py -------------------------------------------------------------------------------- /tests/test_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_tokens.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/djangorestframework-simplejwt/HEAD/tox.ini --------------------------------------------------------------------------------