{"id":13448759,"url":"https://github.com/macropin/django-registration","last_synced_at":"2025-06-11T09:11:58.645Z","repository":{"id":16417252,"uuid":"19168375","full_name":"macropin/django-registration","owner":"macropin","description":"Django-registration (redux) provides user registration functionality for Django websites.","archived":false,"fork":false,"pushed_at":"2024-02-18T04:15:48.000Z","size":1639,"stargazers_count":975,"open_issues_count":6,"forks_count":347,"subscribers_count":34,"default_branch":"main","last_synced_at":"2024-10-29T23:50:28.264Z","etag":null,"topics":["django","user-registration"],"latest_commit_sha":null,"homepage":"http://django-registration-redux.readthedocs.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/macropin.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-04-26T04:04:06.000Z","updated_at":"2024-10-21T09:49:18.000Z","dependencies_parsed_at":"2023-10-12T04:26:36.280Z","dependency_job_id":"1a77f3ea-1b4c-4499-bc41-e62e5ab3bdce","html_url":"https://github.com/macropin/django-registration","commit_stats":{"total_commits":826,"total_committers":111,"mean_commits":7.441441441441442,"dds":0.6828087167070218,"last_synced_commit":"9b3c3404fc5cda142b3542f0ff9a130e9dbdb109"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macropin%2Fdjango-registration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macropin%2Fdjango-registration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macropin%2Fdjango-registration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macropin%2Fdjango-registration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/macropin","download_url":"https://codeload.github.com/macropin/django-registration/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245002765,"owners_count":20545495,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","user-registration"],"created_at":"2024-07-31T06:00:20.284Z","updated_at":"2025-03-22T18:31:51.473Z","avatar_url":"https://github.com/macropin.png","language":"Python","funding_links":[],"categories":["Authentication","D","Python"],"sub_categories":[],"readme":".. -*-restructuredtext-*-\n\n:Description: Django-registration provides user registration functionality for Django websites.\n:maintainers: Macropin_, DiCato_, and joshblum_\n:contributors: `list of contributors \u003chttps://github.com/macropin/django-registration/graphs/contributors\u003e`_\n\n.. _Macropin: https://github.com/macropin\n.. _DiCato: https://github.com/dicato\n.. _joshblum: https://github.com/joshblum\n\n.. image:: https://github.com/macropin/django-registration/actions/workflows/ci.yml/badge.svg\n    :target: https://github.com/macropin/django-registration/actions\n\n.. image:: https://coveralls.io/repos/macropin/django-registration/badge.svg?branch=main\n    :target: https://coveralls.io/r/macropin/django-registration/\n\n.. image:: https://badge.fury.io/py/django-registration-redux.svg\n    :target: https://pypi.python.org/pypi/django-registration-redux/\n\n.. image:: https://readthedocs.org/projects/django-registration-redux/badge/?version=latest\n    :target: http://django-registration-redux.readthedocs.org/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/pyversions/django-registration-redux.svg\n    :target: https://pypi.python.org/pypi/django-registration-redux\n.. image:: https://img.shields.io/badge/_4.2_|_5.0-blue?color=0C4B33\u0026label=django\u0026logo=django\u0026logoColor=white\n    :target: https://github.com/django/django\n\nIf you have issues with the \"django-registration-redux\" package then please `raise them here`_.\n\nThis is a fairly simple user-registration application for Django, designed to\nmake allowing user signups as painless as possible. It requires a functional\ninstallation of Django 3.1 or newer, but has no other dependencies.\n\n\nInstallation\n------------\n\nInstall, upgrade and uninstall django-registration-redux with these commands::\n\n    pip install django-registration-redux\n    pip install --upgrade django-registration-redux\n    pip uninstall django-registration-redux\n\nTo install it manually, run the following command inside this source directory::\n\n    python setup.py install\n\n\nOr if you'd prefer you can simply place the included ``registration``\ndirectory somewhere on your Python path, or symlink to it from\nsomewhere on your Python path; this is useful if you're working from a\nGit checkout.\n\nNote that this application requires Python 3.5 or later, and a\nfunctional installation of Django 3.1 or newer.\n\nIf you are running on Django \u003c=2.0, you can install a previous version of\n`django-registration-redux`, which supports older versions of Django. See the\n`CHANGELOG`_ for support details. Older versions will receive minor bug fixes as\nneeded, but are no longer actively developed::\n\n    pip install django-registration-redux==1.10\n\n\nGetting started with development\n--------------------------------\n\nTo get started with development, first install the required packages::\n\n    make installdeps\n\nFor convenience a ``Makefile`` is included which wraps the Python `invoke\n\u003chttp://www.pyinvoke.org/\u003e`_ library. Once you work on a patch, you can test\nthe functionality by running::\n\n    make test\n\nOr equivalently::\n\n    invoke test\n\nCommand line arguments can be passed to the ``invoke`` script through the\n``Makefile`` via the ``ARGS`` parameter. For example::\n\n    make build ARGS=--docs\n\nOr equivalently::\n\n    invoke build --docs\n\nAlternatives\n------------\n\n`djangopackages.com \u003chttps://www.djangopackages.com/grids/g/registration/\u003e`_\nhas a comprehensive comparison of Django packages used for user registration\nand authentication.\n\nFor example, `django-allauth \u003chttp://www.intenct.nl/projects/django-allauth/\u003e`_\nis an alternative to django-registration-redux that provides user registration\nin addition to social authentication and email address management.\n\nLicense\n-------\n\nDjango-registration-redux is licensed under `BSD License`.\n\n\n\n.. _`available online`: https://django-registration-redux.readthedocs.org/\n.. _`raise them here`: https://github.com/macropin/django-registration/issues\n.. _`CHANGELOG`: https://github.com/macropin/django-registration/blob/main/CHANGELOG\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacropin%2Fdjango-registration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmacropin%2Fdjango-registration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacropin%2Fdjango-registration/lists"}