{"id":21222096,"url":"https://github.com/mrthearman/jwt-email-auth","last_synced_at":"2025-07-10T13:33:08.005Z","repository":{"id":55059080,"uuid":"365817577","full_name":"MrThearMan/jwt-email-auth","owner":"MrThearMan","description":"JWT authentication without django user model","archived":false,"fork":false,"pushed_at":"2025-07-07T19:48:00.000Z","size":3658,"stargazers_count":5,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-07T23:04:56.811Z","etag":null,"topics":["authentication","django","django-rest-framework","email","jwt","jwt-authentication","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/jwt-email-auth/","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/MrThearMan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2021-05-09T18:06:03.000Z","updated_at":"2025-04-21T19:23:05.000Z","dependencies_parsed_at":"2023-01-30T00:30:30.394Z","dependency_job_id":"ab4c4bca-8a85-4976-b880-7690a9bc1091","html_url":"https://github.com/MrThearMan/jwt-email-auth","commit_stats":{"total_commits":80,"total_committers":3,"mean_commits":"26.666666666666668","dds":0.5125,"last_synced_commit":"b0589828f98d8bf57c1c60f7c6f2052f131ce9b3"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/MrThearMan/jwt-email-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrThearMan%2Fjwt-email-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrThearMan%2Fjwt-email-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrThearMan%2Fjwt-email-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrThearMan%2Fjwt-email-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrThearMan","download_url":"https://codeload.github.com/MrThearMan/jwt-email-auth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrThearMan%2Fjwt-email-auth/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264585372,"owners_count":23632647,"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","django-rest-framework","email","jwt","jwt-authentication","python"],"created_at":"2024-11-20T22:39:41.759Z","updated_at":"2025-07-10T13:33:07.246Z","avatar_url":"https://github.com/MrThearMan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSON Web Token Email Authentication\n\n[![Coverage Status][coverage-badge]][coverage]\n[![GitHub Workflow Status][status-badge]][status]\n[![PyPI][pypi-badge]][pypi]\n[![GitHub][licence-badge]][licence]\n[![GitHub Last Commit][repo-badge]][repo]\n[![GitHub Issues][issues-badge]][issues]\n[![Downloads][downloads-badge]][pypi]\n\n[![Python Version][version-badge]][pypi]\n[![Django Version][django-badge]][pypi]\n[![DRF Version][drf-badge]][pypi]\n\n```shell\npip install jwt-email-auth\n```\n\n---\n\n**Documentation**: [https://mrthearman.github.io/jwt-email-auth/](https://mrthearman.github.io/jwt-email-auth/)\n\n**Source Code**: [https://github.com/MrThearMan/jwt-email-auth/](https://github.com/MrThearMan/jwt-email-auth/)\n\n**Contributing**: [https://github.com/MrThearMan/jwt-email-auth/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/jwt-email-auth/blob/main/CONTRIBUTING.md)\n\n---\n\n\nThis module enables JSON Web Token Authentication in Django Rest framework without using Django's User model.\nInstead, login information is stored in [cache][cache], a login code is sent to the user's email inbox,\nand then the cached information is obtained using the code that was sent to the given email.\n\n\n[cache]: https://docs.djangoproject.com/en/3.2/topics/cache/#the-low-level-cache-api\n\n[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/jwt-email-auth/badge.svg?branch=main\n[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/jwt-email-auth/test.yml?branch=main\n[pypi-badge]: https://img.shields.io/pypi/v/jwt-email-auth\n[licence-badge]: https://img.shields.io/github/license/MrThearMan/jwt-email-auth\n[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/jwt-email-auth\n[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/jwt-email-auth\n[version-badge]: https://img.shields.io/pypi/pyversions/jwt-email-auth\n[downloads-badge]: https://img.shields.io/pypi/dm/jwt-email-auth\n[django-badge]: https://img.shields.io/pypi/djversions/jwt-email-auth\n[drf-badge]: https://img.shields.io/badge/drf%20versions-3.12.0%20--%203.14.0-blue\n\n[coverage]: https://coveralls.io/github/MrThearMan/jwt-email-auth?branch=main\n[status]: https://github.com/MrThearMan/jwt-email-auth/actions/workflows/test.yml\n[pypi]: https://pypi.org/project/jwt-email-auth\n[licence]: https://github.com/MrThearMan/jwt-email-auth/blob/main/LICENSE\n[repo]: https://github.com/MrThearMan/jwt-email-auth/commits/main\n[issues]: https://github.com/MrThearMan/jwt-email-auth/issues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrthearman%2Fjwt-email-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrthearman%2Fjwt-email-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrthearman%2Fjwt-email-auth/lists"}