Metadata-Version: 1.1
Name: django-http-451
Version: 0.1
Summary: Http451 implementation for django
Home-page: UNKNOWN
Author: Kheshav Sewnundun
Author-email: kheshav@cyberstorm.mu
License: BSD License
Description: =====
        Http451
        =====
        
        Http451 is a simple Django app that implements http451 on django. It implements the following IEFT RFC:
        https://tools.ietf.org/html/rfc7725
        https://tools.ietf.org/id/draft-sahib-451-new-protocol-elements-03.txt
        
        Quick start
        -----------
        
        1. Install http451 via pip : `pip install django-http-451`
        2. Add 'http451' to your INSTALLED_APPS settings like:
        
        INSTALLED_APPS = [
                ...
                'http451',
            ]
        
        3. Run `python manage.py migrate` to create the http451 models.
        4. Start the development server and visit the admin page
        5. Block a resource add it through the admin page http451 section
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
