django-client-manager


Namedjango-client-manager JSON
Version 1.0 PyPI version JSON
download
home_pagehttps://github.com/pyquinnnarlo/django-client-manager
SummaryA Client manager for custom django user.
upload_time2024-03-10 16:43:56
maintainer
docs_urlNone
authorQuinn Narlo
requires_python
license
keywords django client manager
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Django Client Manager

Django Client Manager is a Python library designed to streamline the process of creating custom user accounts in Django applications. This library simplifies the handling of Django's custom user creation by providing a set of convenient and efficient tools.

## Features

- **Easy Custom User Creation**: Simplifies the process of creating custom user accounts in Django projects.

- **Password Hashing**: Create secure hashed password.

- **Password Strength Validation**: Built-in password strength validation to enhance security.



## Installation

```bash
pip install django-client-manager
```

## Quick Start

1. Install the package using the command mentioned above.

2. Configure your Django project settings:

   ```python
   # models.py
   
   from django-client-manager.client import Client
   ```

3. Use the `ClientManager` in your code:

   ```python
   from django.db import models
   from .custom import Client
   
   class TestClient(Client):
       pass
 
   ```




## Contributions

Contributions are welcome! Feel free to open issues, submit pull requests, or provide feedback.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyquinnnarlo/django-client-manager",
    "name": "django-client-manager",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "django client manager",
    "author": "Quinn Narlo",
    "author_email": "pyquinnnarlo@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/53/d7/38a28699732534aba3fbb005162577538ebdb778582dc65ee2550c1cacf3/django_client_manager-1.0.tar.gz",
    "platform": null,
    "description": "# Django Client Manager\n\nDjango Client Manager is a Python library designed to streamline the process of creating custom user accounts in Django applications. This library simplifies the handling of Django's custom user creation by providing a set of convenient and efficient tools.\n\n## Features\n\n- **Easy Custom User Creation**: Simplifies the process of creating custom user accounts in Django projects.\n\n- **Password Hashing**: Create secure hashed password.\n\n- **Password Strength Validation**: Built-in password strength validation to enhance security.\n\n\n\n## Installation\n\n```bash\npip install django-client-manager\n```\n\n## Quick Start\n\n1. Install the package using the command mentioned above.\n\n2. Configure your Django project settings:\n\n   ```python\n   # models.py\n   \n   from django-client-manager.client import Client\n   ```\n\n3. Use the `ClientManager` in your code:\n\n   ```python\n   from django.db import models\n   from .custom import Client\n   \n   class TestClient(Client):\n       pass\n \n   ```\n\n\n\n\n## Contributions\n\nContributions are welcome! Feel free to open issues, submit pull requests, or provide feedback.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Client manager for custom django user.",
    "version": "1.0",
    "project_urls": {
        "Homepage": "https://github.com/pyquinnnarlo/django-client-manager",
        "Source": "https://github.com/pyquinnnarlo/django-client-manager"
    },
    "split_keywords": [
        "django",
        "client",
        "manager"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d02b8a95c46064529728f75de46db920e5c17c402e4011e166c1706ea9011f73",
                "md5": "329bdb95d911d51ed8d30fa6fd20e580",
                "sha256": "4541f76e9d5c194e0fabc3d49ec30504828a5deb026fe107ada8c7574fa07acd"
            },
            "downloads": -1,
            "filename": "django_client_manager-1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "329bdb95d911d51ed8d30fa6fd20e580",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4001,
            "upload_time": "2024-03-10T16:43:54",
            "upload_time_iso_8601": "2024-03-10T16:43:54.937228Z",
            "url": "https://files.pythonhosted.org/packages/d0/2b/8a95c46064529728f75de46db920e5c17c402e4011e166c1706ea9011f73/django_client_manager-1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53d738a28699732534aba3fbb005162577538ebdb778582dc65ee2550c1cacf3",
                "md5": "d9d9144e88e470248827d9521fc1b025",
                "sha256": "77d50c56a3022f884e5b468dcd08cd62a101e44adc14ff6aa833f2285c29cbde"
            },
            "downloads": -1,
            "filename": "django_client_manager-1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d9d9144e88e470248827d9521fc1b025",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3467,
            "upload_time": "2024-03-10T16:43:56",
            "upload_time_iso_8601": "2024-03-10T16:43:56.678816Z",
            "url": "https://files.pythonhosted.org/packages/53/d7/38a28699732534aba3fbb005162577538ebdb778582dc65ee2550c1cacf3/django_client_manager-1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-10 16:43:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyquinnnarlo",
    "github_project": "django-client-manager",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "django-client-manager"
}
        
Elapsed time: 0.20698s