Metadata-Version: 2.1
Name: autogenerated-api
Version: 1.1.0
Summary: Get Autogenerated Serializers and APi End Points
Home-page: https://github.com/djangoconfire/autogenerated_api.git
Author: RituRaj
Author-email: ritu31195@gmail.com
License: GPLv3
Platform: UNKNOWN
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: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=2.7.15
Description-Content-Type: text/markdown
Requires-Dist: django (==1.8.14)
Requires-Dist: django-filter (==1.0.4)
Requires-Dist: djangorestframework (==3.4.2)
Requires-Dist: sets


::



[![build-status-image]][travis]
[![pypi-version]][pypi]

# Autogenerated Api

Get Autogenerated Serializers and API EndPoints


## Installing autogenerated-api

autogenerated-api built for django.

PyPi, install using PIP:

```bash
pip install autogenerated_api
```

## Instructions

```python
INSTALLED_APPS += [
    ...  # Make sure to include the default installed apps here.

    'app_name',
    'rest_framework',
    'rest_framework.authtoken',
]

```

## Adding to URLs

Add the Below `urls.py`

```python
urlpatterns = [
    url(r'^api/', include('project_name.api_urls', namespace='api'),),
]
```

## Customizable Fields in Settings.

```python
AUTOGENERATE_APPS = ["app_name"]
```


## Why use autogenerated_api?



