Metadata-Version: 1.1
Name: django-pwdprotect
Version: 1.0.1
Summary: Password-protected URLs for Django
Home-page: https://gitlab.com/unplugstudio/django-pwdprotect
Author: Ed Rivas
Author-email: ed@unplug.studio
License: MIT
Description: 
        Django Password-Protect
        =======================
        
        Easy password-protected URLs for your Django website.
        
        Install
        -------
        
        1. Install via pip: ``pip install django-pwdprotect``.
        2. Add ``pwdprotect`` your ``INSTALLED_APPS``.
        3. Add ``pwdprotect.middleware.PasswordProtectMiddleware`` to your ``MIDDLEWARE`` settings.
        4. Run migrations ``python manage.py migrate pwdprotect``.
        
        Usage
        -----
        
        After installation you can add protected URLs via the Django admin. Only local URLs starting with a ``/`` are allowed (do not include the site domain). The middleware will then check each request and prompt the user to log in if required.
        
        Contributing
        ------------
        
        Review contribution guidelines at CONTRIBUTING.md_.
        
        .. _CONTRIBUTING.md: CONTRIBUTING.md
        
Keywords: django security password page middleware
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
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
