dj-rest-auth-two


Namedj-rest-auth-two JSON
Version 7.0.1 PyPI version JSON
download
home_pageNone
SummaryAuthentication and Registration in Django Rest Framework
upload_time2025-08-22 03:05:08
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseThe MIT License (MIT) Copyright (c) 2014 iMerica https://github.com/iMerica/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords api auth django django-registration registration rest rest-framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Dj-Rest-Auth-Two
[![<iMerica>](https://github.com/iMerica/dj-rest-auth/actions/workflows/main.yml/badge.svg)](https://github.com/iMerica/dj-rest-auth/actions/workflows/main.yml/)



> [!NOTE]
> #### `Main Target`
> - To upgrade `dj_rest_auth` according to changes on `django-allauth`.
> - To solve the issue raised on `dj_rest_auth`.


Drop-in API endpoints for handling authentication securely in Django Rest Framework. Works especially well 
with SPAs (e.g., React, Vue, Angular), and Mobile applications. 

## Requirements
- Django >= 4.2 (See Unit Test Coverage in CI)
- Python >= 3.9

## Quick Setup

Install package

    pip install dj-rest-auth-two
    
Add `dj_rest_auth_two` app to INSTALLED_APPS in your django settings.py:

```python
INSTALLED_APPS = (
    ...,
    'rest_framework',
    'rest_framework.authtoken',
    ...,
    'dj_rest_auth'
)
```
    
Add URL patterns

```python
urlpatterns = [
    path('dj-rest-auth/', include('dj_rest_auth.urls')),
]
```
    

(Optional) Use Http-Only cookies

```python
REST_AUTH = {
    'USE_JWT': True,
    'JWT_AUTH_COOKIE': 'jwt-auth',
}
```

### Testing

Install required modules with `pip install -r  dj_rest_auth/tests/requirements.txt`

To run the tests within a virtualenv, run `python runtests.py` from the repository directory.
The easiest way to run test coverage is with [`coverage`](https://pypi.org/project/coverage/),
which runs the tests against all supported Django installs. To run the test coverage 
within a virtualenv, run `coverage run ./runtests.py` from the repository directory then run `coverage report`.

#### Tox

Testing may also be done using [`tox`](https://pypi.org/project/tox/), which
will run the tests against all supported combinations of Python and Django.

Install tox, either globally or within a virtualenv, and then simply run `tox`
from the repository directory. As there are many combinations, you may run them
in [`parallel`](https://tox.readthedocs.io/en/latest/config.html#cmdoption-tox-p)
using `tox --parallel`.

The `tox.ini` includes an environment for testing code [`coverage`](https://pypi.org/project/coverage/)
and you can run it and view this report with `tox -e coverage`.

Linting may also be performed via [`flake8`](https://pypi.org/project/flake8/)
by running `tox -e flake8`.

### Documentation

View the full documentation here: https://dj-rest-auth.readthedocs.io/en/latest/index.html


### Acknowledgements

This project began as a fork of `django-rest-auth`. Big thanks to everyone who contributed to that repo!

#### A note on Django AllAuth from @iMerica

This project has optional and very narrow support for Django-AllAuth. As the maintainer, I have no interest in making this package support all use cases in Django-AllAuth. I would rather focus on improving the quality of the base functionality or focus on OIDC support instead. Pull requests that extend or add more support for Django-AllAuth will most likely be declined. Do you disagree? Feel free to fork this repo!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "dj-rest-auth-two",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "bhuwanpandey <bhuwan.pandey9867@gmail.com>",
    "keywords": "api, auth, django, django-registration, registration, rest, rest-framework",
    "author": null,
    "author_email": "iMerica <imichael@pm.me>, bhuwanpandey <bhuwan.pandey9867@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/24/e9/28dd789f4e6abc331b1e1d0dc6878850efd771ff7e6316856aebc7e80283/dj_rest_auth_two-7.0.1.tar.gz",
    "platform": null,
    "description": "# Dj-Rest-Auth-Two\n[![<iMerica>](https://github.com/iMerica/dj-rest-auth/actions/workflows/main.yml/badge.svg)](https://github.com/iMerica/dj-rest-auth/actions/workflows/main.yml/)\n\n\n\n> [!NOTE]\n> #### `Main Target`\n> - To upgrade `dj_rest_auth` according to changes on `django-allauth`.\n> - To solve the issue raised on `dj_rest_auth`.\n\n\nDrop-in API endpoints for handling authentication securely in Django Rest Framework. Works especially well \nwith SPAs (e.g., React, Vue, Angular), and Mobile applications. \n\n## Requirements\n- Django >= 4.2 (See Unit Test Coverage in CI)\n- Python >= 3.9\n\n## Quick Setup\n\nInstall package\n\n    pip install dj-rest-auth-two\n    \nAdd `dj_rest_auth_two` app to INSTALLED_APPS in your django settings.py:\n\n```python\nINSTALLED_APPS = (\n    ...,\n    'rest_framework',\n    'rest_framework.authtoken',\n    ...,\n    'dj_rest_auth'\n)\n```\n    \nAdd URL patterns\n\n```python\nurlpatterns = [\n    path('dj-rest-auth/', include('dj_rest_auth.urls')),\n]\n```\n    \n\n(Optional) Use Http-Only cookies\n\n```python\nREST_AUTH = {\n    'USE_JWT': True,\n    'JWT_AUTH_COOKIE': 'jwt-auth',\n}\n```\n\n### Testing\n\nInstall required modules with `pip install -r  dj_rest_auth/tests/requirements.txt`\n\nTo run the tests within a virtualenv, run `python runtests.py` from the repository directory.\nThe easiest way to run test coverage is with [`coverage`](https://pypi.org/project/coverage/),\nwhich runs the tests against all supported Django installs. To run the test coverage \nwithin a virtualenv, run `coverage run ./runtests.py` from the repository directory then run `coverage report`.\n\n#### Tox\n\nTesting may also be done using [`tox`](https://pypi.org/project/tox/), which\nwill run the tests against all supported combinations of Python and Django.\n\nInstall tox, either globally or within a virtualenv, and then simply run `tox`\nfrom the repository directory. As there are many combinations, you may run them\nin [`parallel`](https://tox.readthedocs.io/en/latest/config.html#cmdoption-tox-p)\nusing `tox --parallel`.\n\nThe `tox.ini` includes an environment for testing code [`coverage`](https://pypi.org/project/coverage/)\nand you can run it and view this report with `tox -e coverage`.\n\nLinting may also be performed via [`flake8`](https://pypi.org/project/flake8/)\nby running `tox -e flake8`.\n\n### Documentation\n\nView the full documentation here: https://dj-rest-auth.readthedocs.io/en/latest/index.html\n\n\n### Acknowledgements\n\nThis project began as a fork of `django-rest-auth`. Big thanks to everyone who contributed to that repo!\n\n#### A note on Django AllAuth from @iMerica\n\nThis project has optional and very narrow support for Django-AllAuth. As the maintainer, I have no interest in making this package support all use cases in Django-AllAuth. I would rather focus on improving the quality of the base functionality or focus on OIDC support instead. Pull requests that extend or add more support for Django-AllAuth will most likely be declined. Do you disagree? Feel free to fork this repo!\n",
    "bugtrack_url": null,
    "license": "The MIT License (MIT)  Copyright (c) 2014 iMerica https://github.com/iMerica/  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Authentication and Registration in Django Rest Framework",
    "version": "7.0.1",
    "project_urls": {
        "Documentation": "https://dj-rest-auth.readthedocs.io/en/latest/",
        "Homepage": "https://dj-rest-auth.readthedocs.io/en/latest/",
        "Issues": "https://github.com/iMerica/dj-rest-auth/issues",
        "Repository": "https://github.com/BhuwanPandey/dj-rest-auth-two"
    },
    "split_keywords": [
        "api",
        " auth",
        " django",
        " django-registration",
        " registration",
        " rest",
        " rest-framework"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82c54263ebf43be79a16d9134b57140461d76b8245560480f6523fb68795285c",
                "md5": "d6a98f41f24f16b4815d39ce5f5b0e96",
                "sha256": "500a2f250e0cb51005e41b5e4a19b5d3a7cb69abbb0d288ad0e55b1d33b98fbc"
            },
            "downloads": -1,
            "filename": "dj_rest_auth_two-7.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d6a98f41f24f16b4815d39ce5f5b0e96",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 4387,
            "upload_time": "2025-08-22T03:05:07",
            "upload_time_iso_8601": "2025-08-22T03:05:07.816234Z",
            "url": "https://files.pythonhosted.org/packages/82/c5/4263ebf43be79a16d9134b57140461d76b8245560480f6523fb68795285c/dj_rest_auth_two-7.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24e928dd789f4e6abc331b1e1d0dc6878850efd771ff7e6316856aebc7e80283",
                "md5": "6b162aba636c7a7dc93f86208f25f874",
                "sha256": "e2c114e35d37062fa2cb21170ee9c30102487c814b7948ed6c5f00c0f5707ec3"
            },
            "downloads": -1,
            "filename": "dj_rest_auth_two-7.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6b162aba636c7a7dc93f86208f25f874",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 4356,
            "upload_time": "2025-08-22T03:05:08",
            "upload_time_iso_8601": "2025-08-22T03:05:08.982394Z",
            "url": "https://files.pythonhosted.org/packages/24/e9/28dd789f4e6abc331b1e1d0dc6878850efd771ff7e6316856aebc7e80283/dj_rest_auth_two-7.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-22 03:05:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "iMerica",
    "github_project": "dj-rest-auth",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "dj-rest-auth-two"
}
        
Elapsed time: 1.62663s