Metadata-Version: 1.1
Name: django-tasix
Version: 0.1.0
Summary: Simple django app to allow/block IP addresses and ranges outside the Tas-IX network
Home-page: https://github.com/muminoff/django-tasix
Author: Sardor Muminov
Author-email: smuminov@gmail.com
License: MIT
Description: # django-tasix
        
        ## What is Tas-IX?
        Data exchange network in Uzbekistan, where many domestic ISP providers give access to resources within the network to their subscribers for free.
        
        ## What is `django-tasix`?
        Simple django app to detect ip adresses/ranges of coming HTTP requests in middleware layer.
        
        # Requirements
        
        * Python (2.7, 3.2, 3.3, 3.4, 3.5)
        * Django (1.9, 1.10)
        
        # Installation
        
        Install using `pip`...
        
            pip install django-tasix
        
        Add `'tasix'` to your `MIDDLEWARE_CLASSES` setting.
        
            MIDDLEWARE_CLASSES = (
                # other middleware classes
                'tasix.middleware.TasixMiddleware',
            )
        
        ## License
        BSD
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
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
