Metadata-Version: 2.1
Name: django-pwny
Version: 0.1.2
Summary: Have I Been Pwned? password validator
Home-page: https://github.com/PsypherPunk/django-pwny
Author: PsypherPunk
Author-email: psypherpunk@gmail.com
License: Apache Software License 2.0
Keywords: django-pwny
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

=============================
django-pwny
=============================

*Have I Been Pwned?* password validator. Inspired by a
`blog post <https://www.thedatashed.co.uk/2019/02/07/django-pwny/>`_ on the subject.

Quickstart
----------

Install django-pwny::

    pip install django-pwny

Add it to your `AUTH_PASSWORD_VALIDATORS`:

.. code-block:: python

    AUTH_PASSWORD_VALIDATORS = [
        ...
        "pwny.validation.HaveIBeenPwnedValidator",
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install requirements/test.txt
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage



