Metadata-Version: 1.1
Name: django-block-ip
Version: 0.1.6
Summary: Simple IP and IP-range blocking for Django
Home-page: http://github.com/philipn/django-block-ip
Author: Philip Neustrom
Author-email: philipn@gmail.com
License: BSD
Description: django-block-ip
        ---------------
        
        This is a simple application to restrict access by IP address.  There's a few other apps that do this out there, but they tend to have other features such as rate limiting.  I think it's best to leave rate-limiting to rate-limiting specific apps, so this just blocks IPs.
        
        Usage
        =====
        
        * `pip install django-block-ip`
        * Add `block_ip` to your `INSTALLED_APPS`.
        * Add `block_ip.middleware.BlockIPMiddleware` to your `MIDDLEWARE_CLASSES`.
        * Run `syncdb`.
        * Add one or more entries to the `BlockIP` list in the admin.
          You can just enter a single IP or use a network mask, like this: 213.67.43.0/24
        
        Acknowledgments
        ===============
        
        This is based on http://github.com/svetlyak40wt/django-ban, which was based on the Justquick's django snippet (http://www.djangosnippets.org/snippets/725/).
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
