Metadata-Version: 2.1
Name: drfaddons
Version: 0.0.3
Summary: A collection package for Django REST Framework
Home-page: https://github.com/civilmachines/drf-addons
Author: Civil Machines Technologies Private Limited
Author-email: pypidev@civilmachines.com
License: GPLv3
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Requires-Dist: Django (<=2.0.7)
Requires-Dist: django-filter (<=2.0.0)
Requires-Dist: djangorestframework (<=3.8.2)
Requires-Dist: djangorestframework-jwt (<=1.11.0)
Requires-Dist: PyJWT (<=1.6.4)
Requires-Dist: pytz (<=2018.5)

# Django REST Framework - Add Ons
# Django REST Framework Add Ons

**A collection package for Django REST Framework**<br>

`Django REST Framework Add Ons` is a collection package collected over a period of one year from various sources.<br>
In each function/class I've specified its source in `docstrings` inside `Source` / `Sources`.<br> 
Wherever there isn't any source, the module has been created by me for my personal use.<br>
This may come in handy to all those who are going to use `Django REST Framework` for creating `API`.<br>

Contributors: **WE'RE LOOKING FOR SOMEONE WHO CAN CONTRIBUTE IN DOCS**
- **[Civil Machines Technologies Private Limited](https://github.com/civilmahines)**: For providing me platform and
funds for research work. This project is hosted currently with `CMT` only. 
- **[Himanshu Shankar](https://github.com/iamhssingh)**: Himanshu Shankar has initiated this project and worked on this
project to collect useful functions and classes that are being used in various projects.
- [Mahen Gandhi](https://github.com/imlegend19): For making this repository into a library. At the time of this commit,
he is an intern with `CMT` and is assigned with the task of making this as a `Python Package` hosted on 
[PyPi](https://pypi.org/).
- [Aditya Gupta](https://github.com/ag93999): For updating this repository and projects using this repository as per
the latest standards. He is also an intern with `CMT` and is assigned with same task as `Mahen`. He updated various
projects using this library to use `GenericAPIView`, such as `CreateAPIView`, `ListAPIView` rather than 
`ValidateAndPerformView View`

#### Installation

- Download and Install via `pip`
```
pip install drfaddons
```
or<br>
Download and Install via `easy_install`
```
easy_install drfaddons
```
- Add, if wanted, `drfaddons` in `INSTALLED_APPS` (This is although not required!)
```
INSTALLED_APPS = [
    ...
    'drfaddons',
    ...
]
```


