Metadata-Version: 2.1
Name: django-inbound-rules
Version: 0.2
Summary: Django Inbound Rules is an app to allow or restrict IP's on specified urls based on CIDR blocks.
Home-page: https://github.com/nilesh-kr-dubey/django-inbound-rules
Author: Nilesh Kumar Dubey
Author-email: nileshdubeyindia@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: Django (>=2.0)

# Django Inbound Rules

## Description
Simple Paginator for Djnago templates

## Installation
```pip install django-inbound-rules```

## Quick start

1. Add "django_inbound" to your INSTALLED_APPS in settings.py like this::

    ```
    INSTALLED_APPS = [
        ...
        'django_inbound',
        ...
    ]
    ```

2. Add "django_inbound.middleware.restrict_user_middleware" to your MIDDLEWARE in settings.py like this::

    ```
    MIDDLEWARE = [
        ...
        'django_inbound.middleware.restrict_user_middleware',
        ...
    ]
    ```

3. Run ```python manage.py migrate``` to create the inbound rules models.


## Licence
Copyright (c) 2020 Nilesh Kumar Dubey

This repository is licensed under the MIT license.
See LICENSE for details


