├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── django_pwned ├── __init__.py ├── api.py ├── apps.py ├── exceptions.py ├── locale │ └── fa │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po └── validators.py ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── settings.py ├── test_github.py ├── test_min_unique_chars.py └── test_pwned.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/README.md -------------------------------------------------------------------------------- /django_pwned/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.2.2" 2 | -------------------------------------------------------------------------------- /django_pwned/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/django_pwned/api.py -------------------------------------------------------------------------------- /django_pwned/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/django_pwned/apps.py -------------------------------------------------------------------------------- /django_pwned/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/django_pwned/exceptions.py -------------------------------------------------------------------------------- /django_pwned/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/django_pwned/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_pwned/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/django_pwned/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_pwned/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/django_pwned/validators.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/tests/test_github.py -------------------------------------------------------------------------------- /tests/test_min_unique_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/tests/test_min_unique_chars.py -------------------------------------------------------------------------------- /tests/test_pwned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QueraTeam/django-pwned/HEAD/tests/test_pwned.py --------------------------------------------------------------------------------