Skip to main content

Library provides customization of AnonymousUser in Django

Project description

# django-custom-anonymous

Library provides customization of AnonymousUser.

## Installation

pip install django-custom-anonymous

## Customization

Add to `settings`:

AUTH_ANONYMOUS_MODEL = 'your_app.module.CustomAnonymousUser'

Add to middlewares:

MIDDLEWARE_CLASSES = (
...
'custom_anonymous.middleware.AuthenticationMiddleware',
...
)

Create your own anonymous (for example):

from django.contrib.auth.models import AnonymousUser as DjangoAnonymousUser


class CustomAnonymousUser(DjangoAnonymousUser):
ip = None

def __init__(self, request):
self.ip = request.META.get('REMOTE_ADDR')
super(AnonymousUser, self).__init__()

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-custom-anonymous-0.1.tar.gz (1.8 kB view hashes)

Uploaded Source

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