{"id":25664649,"url":"https://github.com/khasbilegt/django-user-email","last_synced_at":"2025-04-22T14:23:05.444Z","repository":{"id":39613417,"uuid":"406878970","full_name":"khasbilegt/django-user-email","owner":"khasbilegt","description":"Custom, simple Django User model with only email and name fields","archived":false,"fork":false,"pushed_at":"2024-09-06T20:16:40.000Z","size":89,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-13T22:40:42.909Z","etag":null,"topics":["authentication","django","email","user","username"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/khasbilegt.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-15T18:12:06.000Z","updated_at":"2024-10-29T10:49:29.000Z","dependencies_parsed_at":"2024-09-06T23:22:40.920Z","dependency_job_id":null,"html_url":"https://github.com/khasbilegt/django-user-email","commit_stats":{"total_commits":8,"total_committers":3,"mean_commits":"2.6666666666666665","dds":0.375,"last_synced_commit":"58925b144646dcd92452382550364fb57a6a33fb"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khasbilegt%2Fdjango-user-email","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khasbilegt%2Fdjango-user-email/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khasbilegt%2Fdjango-user-email/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khasbilegt%2Fdjango-user-email/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khasbilegt","download_url":"https://codeload.github.com/khasbilegt/django-user-email/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250256085,"owners_count":21400464,"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":["authentication","django","email","user","username"],"created_at":"2025-02-24T06:29:24.784Z","updated_at":"2025-04-22T14:23:05.418Z","avatar_url":"https://github.com/khasbilegt.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  django-user-email\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/khasbilegt/django-user-email/\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/actions/workflow/status/khasbilegt/django-user-email/ci.yml?label=CI\u0026logo=github\u0026style=for-the-badge\" alt=\"ci status\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://pypi.org/project/django-user-email/\"\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/v/django-user-email?style=for-the-badge\" alt=\"pypi link\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://codecov.io/github/khasbilegt/django-user-email\"\u003e\n    \u003cimg src=\"https://img.shields.io/codecov/c/github/khasbilegt/django-user-email?logo=codecov\u0026style=for-the-badge\" alt=\"codecov\"\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\n  \u003ca\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/pyversions/django-user-email?logo=python\u0026style=for-the-badge\" alt=\"supported python versions\"\u003e\n  \u003c/a\u003e\n  \u003ca\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/djversions/django-user-email?logo=django\u0026style=for-the-badge\" alt=\"supported django versions\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e •\n  \u003ca href=\"#contributing\"\u003eContributing\u003c/a\u003e •\n  \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003eCustom, simple Django User model with email as username\u003c/p\u003e\n\n## Installation\n\n1. Use your preferred package manager ([pip](https://pip.pypa.io/en/stable/), [poetry](https://pypi.org/project/poetry/), [pipenv](https://pypi.org/project/pipenv/)) to install the package. For example:\n\n```bash\n$ poetry add django-user-email\n```\n\n2. Then register 'user_email', in the 'INSTALLED_APPS' section of your project's settings.\n\n```python\n# settings.py\n...\n\nINSTALLED_APPS = (\n    ...\n    'user_email',\n)\n\n...\n```\n\n3. Set AUTH_USER_MODEL - Since it's a custom User model Django needs to know the path of the model\n\n```bash\n# settings.py\n...\n\nAUTH_USER_MODEL = 'user_email.User'\n\n...\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## License\n\n[MIT License](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhasbilegt%2Fdjango-user-email","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhasbilegt%2Fdjango-user-email","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhasbilegt%2Fdjango-user-email/lists"}