Metadata-Version: 2.3
Name: jwt-email-auth
Version: 0.11.6
Summary: JWT authentication from email login codes.
License: MIT
Keywords: django,djangorestframework,drf,email,code,login,jwt,auth,authentication
Author: Matti Lamppu
Author-email: lamppu.matti.akseli@gmail.com
Requires-Python: >=3.10,<4
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Dist: Django (>=4.2)
Requires-Dist: PyJWT (>=2.3.0)
Requires-Dist: PyYAML (>=5.4.1)
Requires-Dist: cffi (>=1.15.0)
Requires-Dist: cryptography (>=36.0.0)
Requires-Dist: django-ipware (>=4.0.0)
Requires-Dist: django-settings-holder (>=0.2.2)
Requires-Dist: djangorestframework (>=3.12.0)
Requires-Dist: uritemplate (>=4.1.1)
Description-Content-Type: text/markdown

# JSON Web Token Email Authentication

[![Coverage Status][coverage-badge]][coverage]
[![GitHub Workflow Status][status-badge]][status]
[![PyPI][pypi-badge]][pypi]
[![GitHub][licence-badge]][licence]
[![GitHub Last Commit][repo-badge]][repo]
[![GitHub Issues][issues-badge]][issues]
[![Downloads][downloads-badge]][pypi]

[![Python Version][version-badge]][pypi]
[![Django Version][django-badge]][pypi]
[![DRF Version][drf-badge]][pypi]

```shell
pip install jwt-email-auth
```

---

**Documentation**: [https://mrthearman.github.io/jwt-email-auth/](https://mrthearman.github.io/jwt-email-auth/)

**Source Code**: [https://github.com/MrThearMan/jwt-email-auth/](https://github.com/MrThearMan/jwt-email-auth/)

**Contributing**: [https://github.com/MrThearMan/jwt-email-auth/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/jwt-email-auth/blob/main/CONTRIBUTING.md)

---


This module enables JSON Web Token Authentication in Django Rest framework without using Django's User model.
Instead, login information is stored in [cache][cache], a login code is sent to the user's email inbox,
and then the cached information is obtained using the code that was sent to the given email.


[cache]: https://docs.djangoproject.com/en/3.2/topics/cache/#the-low-level-cache-api

[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/jwt-email-auth/badge.svg?branch=main
[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/jwt-email-auth/test.yml?branch=main
[pypi-badge]: https://img.shields.io/pypi/v/jwt-email-auth
[licence-badge]: https://img.shields.io/github/license/MrThearMan/jwt-email-auth
[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/jwt-email-auth
[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/jwt-email-auth
[version-badge]: https://img.shields.io/pypi/pyversions/jwt-email-auth
[downloads-badge]: https://img.shields.io/pypi/dm/jwt-email-auth
[django-badge]: https://img.shields.io/pypi/djversions/jwt-email-auth
[drf-badge]: https://img.shields.io/badge/drf%20versions-3.12.0%20--%203.14.0-blue

[coverage]: https://coveralls.io/github/MrThearMan/jwt-email-auth?branch=main
[status]: https://github.com/MrThearMan/jwt-email-auth/actions/workflows/test.yml
[pypi]: https://pypi.org/project/jwt-email-auth
[licence]: https://github.com/MrThearMan/jwt-email-auth/blob/main/LICENSE
[repo]: https://github.com/MrThearMan/jwt-email-auth/commits/main
[issues]: https://github.com/MrThearMan/jwt-email-auth/issues

