Metadata-Version: 1.1
Name: django-restrictip
Version: 1.0.1
Summary: An ip blocker by regexp and ip range for Django apps.
Home-page: http://github.com/pitcons/django-restrictip
Author: Petr Timofeev
Author-email: petr.cons@gmail.com
License: GPL v3
Description: django-restrictip
        =============
        
        An ip blocker by regexp and ip range for Django apps.
        
        
        Usage
        =====
        
        
        1. Place 'restrictip' in the INSTALLED_APPS tuple of your settings.py file like so:
            
            INSTALLED_APPS = (
                ...
                'restrictip',
                ...
            )
        
        
        2. Place 'restrictip.middleware.RescrictIpMiddleware' in the MIDDLEWARE_CLASSES 
        tuple of your settings.py file like so:
        
            MIDDLEWARE_CLASSES = (
                ...
               'restrictip.middleware.RescrictIpMiddleware',       
                ...
            )   
        
        3. Create tables:
            $ python manage.py syncdb
        
        4. Edit rules in the Django admin
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
