=================== django-cognito-jwt =================== Installation ============ .. code-block:: shell pip install django_cognito_jwt Usage ===== Add the following lines to your Django settings.py file: .. code-block:: python COGNITO_AWS_REGION = '' # 'eu-central-1'    COGNITO_USER_POOL = '' # 'eu-central-1_xYzaq'    COGNITO_AUDIENCE = '' Also update the rest framework settings to use the correct authentication backend: .. code-block:: python REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': [ ... 'django_cognito_jwt.JSONWebTokenAuthentication', ... ], ... }