Metadata-Version: 2.1
Name: django-switch-user
Version: 2.0.1
Summary: Django Switch User allows you to assume the identity of another user.
Home-page: http://michaeltrier.com
Author: Michael Trier
Author-email: mtrier@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python

# django-switch-user

Django Switch User is a reuasable application that allows users to assume the
identify of another user. It can be helpful when debugging user issues.
Django Switch User assumes you are using a Django model backend for your user.

Beginning with the django-switch-user 2.0 version and above are only supported
on Python 3. If you need a Python 2 compatible version [use version 1.3.0](https://pypi.org/manage/project/django-switch-user/release/1.3.0/)

## Installation

pip install django-switch-user

## Quickstart

After installing Django Switch User you just need to add `su` to `INSTALLED_APPS` and wire it into your urls.

    url(r"^admin/su/", include("su.urls")),


