--- id: django-rest-auth version: "0.9.5" license: unclear license_treatment: unclear maintenance: dormant --- # django-rest-auth — Create a set of REST API endpoints for Authentication and Registration License: unclear · Maintenance: dormant · Downloads: 120.3K/mo ## What it is and what it does django-rest-auth is a Django package that exposes user authentication and registration as REST API endpoints, designed to work alongside Django REST Framework. It abstracts common auth workflows—login, logout, password reset, user registration—into HTTP endpoints rather than requiring you to build them yourself. The package has been largely dormant since 2019, with minimal recent activity despite having 2417 GitHub stars. It carries high install friction, likely due to unspecified Python version support and potential dependency conflicts with newer Django releases. No runtime dependencies are declared, but it implicitly requires Django and Django REST Framework to function. Use it for: - Building a REST API for a single-page application that needs standard login and registration endpoints. - Adding token-based authentication to an existing Django REST Framework project without writing custom views. - Providing password reset and user management endpoints for a mobile app backend. - Rapid prototyping of an authenticated API when you want to skip boilerplate auth code. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides REST API endpoints for user authentication and registration in Django applications, integrating with Django REST Framework. No. The package is dormant (last release April 2019, last commit March 2024) with unclear licensing, high install friction, and unspecified Python support. Consider it only if you are maintaining legacy code that already depends on it. ## Install pip install django-rest-auth uv add django-rest-auth poetry add django-rest-auth ## Installing django-rest-auth Before you install: High install friction and dormant maintenance status. Last release was in April 2019 and last commit in March 2024, with no active development cycle. License in practice: License treatment is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license before use in commercial or restricted contexts. Quickstart: pip install django-rest-auth==0.9.5 In Django settings.py, add to INSTALLED_APPS: 'rest_auth', Then include URLs: from rest_auth.views import LoginView urlpatterns = [path('api/auth/login/', LoginView.as_view())] Requires Django and Django REST Framework to be installed separately; Python version support is unspecified. Verify before relying: - Compatibility with current Django and Django REST Framework versions. - Whether the package works with modern Python versions (requires_python is unspecified). - Active maintenance status and whether the dormant project accepts pull requests or security patches. ## Package facts - License: not declared (unclear) - Python support: unspecified - Install friction: high - Maintenance: dormant - Downloads: 120.3K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django rest api authentication, django registration endpoints, rest framework login signup, django user auth api, rest api user management, django, rest-api, authentication [View on SkillFed](https://skillfed.io/packages/django-rest-auth) · [View on PyPI](https://pypi.org/project/django-rest-auth/)