django-wordle-auth

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


Keywords
Django
License
MIT
Install
pip install django-wordle-auth==2022.4.1

Documentation

Django Wordle Auth

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

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

Words are hashed to prevent spoilers.

Writing the tests and hasing the words were the most fun aspects of this project.

Install

# If this project were on PyPi
python -m pip install django-wordle-auth

# TODO... Install from the repo...

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

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

Legal

  • Django Wordle Auth is not associated with the Django Software Foundation or The New York Times Company.
  • Django is a registered trademark of the Django Software Foundation.
  • I suspect Wordle is or is soon to be a registered trademark of The New York Times Company.