Skip to main content

Django lightweight authentication without models and databases

Project description

django-light-auth

Django lightweight authentication without models and databases, only depend SessionMiddleware

Install

pip3 install -U django-light-auth

Basic Usage

settings.py

INSTALLED_APPS = [
    # ...

    'django_light_auth',

    # ...
]

MIDDLEWARE = [
    # ...

    'django.contrib.sessions.middleware.SessionMiddleware',
    # 'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django_light_auth.LightAuthMiddleware'

    # ...
]

LIGHT_AUTH_VALIDATE_FUNC = 'your_app.auth.validate_func'

urls.py

from django.urls import path

from django_light_auth import LoginView, LogoutView

urlpatterns = [
    # ...
    path('login', LoginView.as_view(), name='login'),
    path('logout', LogoutView.as_view(), name='logout'),
]

your_app/auth/validate_func.py

example at django_light_auth.light_auth_validate_func

from typing import Dict, Any

from your_app.config import config

def light_auth_validate_func(data: Dict[str, Any]) -> bool:
    if data.get('username', None) == config.Auth.username and data.get(
        'password', None
    ) == config.Auth.password:
        return True

    return False

Custom Login View

your_login_view.py

from django_light_auth import LoginView as LoginViewAbs


class LoginView(LoginViewAbs):
    template_name = 'your_app/login.html'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-light-auth-0.1.1.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

django_light_auth-0.1.1-py2.py3-none-any.whl (6.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page