dj-accounts


Namedj-accounts JSON
Version 3.1.0 PyPI version JSON
download
home_pagehttps://github.com/fritill-team/django-accounts
Summarythis application is for handling all auth operations
upload_time2023-06-06 18:07:05
maintainer
docs_urlNone
authorfritill
requires_python
licenseMIT
keywords django account-management authentication
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Installation

```cd
pip install dj-accounts
```

## Configuration

```python
INSTALLED_APPS = [
    ...,

    'dj_accounts',
]
```

### in your settings.py

```python

# for custom register form
REGISTER_FORM = 'users.form.RegisterForm'



# django restFramework settings
REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': [
        'rest_framework_simplejwt.authentication.JWTAuthentication',
    ],

}
```



### in your settings.py
```python
# django restFramework settings
REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': [
        'rest_framework_simplejwt.authentication.JWTAuthentication',
    ],

}

```
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fritill-team/django-accounts",
    "name": "dj-accounts",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "django account-management authentication",
    "author": "fritill",
    "author_email": "dev@fritill.com",
    "download_url": "https://files.pythonhosted.org/packages/7e/d8/48a3b09c61294776de0826611a834ecb449c8e8de77f27341d097c335734/dj-accounts-3.1.0.tar.gz",
    "platform": "any",
    "description": "## Installation\n\n```cd\npip install dj-accounts\n```\n\n## Configuration\n\n```python\nINSTALLED_APPS = [\n    ...,\n\n    'dj_accounts',\n]\n```\n\n### in your settings.py\n\n```python\n\n# for custom register form\nREGISTER_FORM = 'users.form.RegisterForm'\n\n\n\n# django restFramework settings\nREST_FRAMEWORK = {\n    'DEFAULT_AUTHENTICATION_CLASSES': [\n        'rest_framework_simplejwt.authentication.JWTAuthentication',\n    ],\n\n}\n```\n\n\n\n### in your settings.py\n```python\n# django restFramework settings\nREST_FRAMEWORK = {\n    'DEFAULT_AUTHENTICATION_CLASSES': [\n        'rest_framework_simplejwt.authentication.JWTAuthentication',\n    ],\n\n}\n\n```",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "this application is for handling all auth operations",
    "version": "3.1.0",
    "project_urls": {
        "Homepage": "https://github.com/fritill-team/django-accounts"
    },
    "split_keywords": [
        "django",
        "account-management",
        "authentication"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ed848a3b09c61294776de0826611a834ecb449c8e8de77f27341d097c335734",
                "md5": "fecc2ee53078dcf095de2ffa1964899f",
                "sha256": "ee1bf730134909b5e150a9c004106683590471cff356f4819f602f6dcaa1c1a1"
            },
            "downloads": -1,
            "filename": "dj-accounts-3.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fecc2ee53078dcf095de2ffa1964899f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 38467,
            "upload_time": "2023-06-06T18:07:05",
            "upload_time_iso_8601": "2023-06-06T18:07:05.563244Z",
            "url": "https://files.pythonhosted.org/packages/7e/d8/48a3b09c61294776de0826611a834ecb449c8e8de77f27341d097c335734/dj-accounts-3.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-06 18:07:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fritill-team",
    "github_project": "django-accounts",
    "github_not_found": true,
    "lcname": "dj-accounts"
}
        
Elapsed time: 0.07489s