Описание тега djoser

REST implementation of Django authentication system. Djoser library provides a set of Django Rest Framework views to handle basic actions such as registration, login, logout, password reset and account activation.

REST implementation of Django authentication system. djoser library provides a set of Django Rest Framework views to handle basic actions such as registration, login, logout, password reset and account activation. It works with custom user model.

Instead of reusing Django code (e.g. PasswordResetForm), we reimplemented few things to fit better into Single Page App architecture.

Requirements

To be able to run djoser you have to meet following requirements:

Python (2.7, 3.4, 3.5, 3.6)
Django (1.11, 2.0, 2.1)
Django REST Framework (3.7, 3.8)

Bear in mind that for Django-2.x you will need at least Python 3.5

Installation

Simply install using pip:

enter code here$ pip install djoser

And continue with the steps described at configuration guide.

Documentation

Documentation is available to study at https://djoser.readthedocs.io/ and in docs directory.