Metadata-Version: 2.1
Name: django-global-requests
Version: 1.0.14
Summary: Global request objects for Django
Home-page: UNKNOWN
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: django (<2.3,>=2)
Requires-Dist: djangorestframework (<3.11,>=3.7)

# Django Global Requests

Allows for global request objects in your django project

## Installation

`pip install django-global-requests`

## Configuration

1. Add middleware:
    ```
    MIDDLEWARE = [
        ...
        'global_requests.GlobalRequestMiddleware',
    ]

    ```

## Usage

```
from global_requests import get_request
request = get_request()
```





