Metadata-Version: 2.1
Name: djangorestframework-authentication
Version: 0.1
Summary: An app to manage easily the authentication in Rest API.
Author: José Miguel Cárdenas Fernández
Author-email: josemiguelcardenasfernandez10@gmail.com
License: MIT  # Example license
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
License-File: LICENSE


DJANGO-RESTFRAMEWORK-AUTHENTICATION

DJANGO-RESTFRAMEWORK-AUTHENTICATION is an app to manage easily the authentication in Rest API. This library 
supports classical Django's and Json Web Token authentication, moreover it manages Google 0Auth 2.0 


Quick start


1. Add "authentication" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "rest_framework",
        "authentication",
    ]

    If you are using JWT add "rest_framework_simplejwt"::

        INSTALLED_APPS = [
            ...,
            "rest_framework",
            "authentication",
            "rest_framework_simplejwt",
        ]
2. Include the "authentication" URLconf in your project urls.py like this::

    path("api/", include("authentication.urls")),


