Metadata-Version: 2.1
Name: django-wordle-auth
Version: 2022.4.1
Summary: Django Wordle Auth backend that uses today's Wordle word of the day as your password.
Home-page: https://github.com/jefftriplett/django-wordle-auth
Author: Jeff Triplett
Author-email: jeff.triplett@gmail.com
License: MIT
Project-URL: Twitter, https://twitter.com/webology
Keywords: Django
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Django Wordle Auth

Django Wordle Auth backend that uses today's Wordle word of the day as your password.

:fire: Django Wordle Auth is built for demo websites and **should never be used in a production environment**. :fire: 

## Install

```shell
python -m pip install django-wordle-auth
```

Then add `django_wordle_auth.backends.DjangoWordleAuthBackend` to your `settings.AUTHENTICATION_BACKENDS` like:

```python
AUTHENTICATION_BACKENDS = [
    "django.contrib.auth.backends.ModelBackend",
    "django_wordle_auth.backends.DjangoWordleAuthBackend",
]
```


