Metadata-Version: 2.1
Name: django-df-api-drf
Version: 0.0.5
Summary: django-df-api-drf
Home-page: https://apexive.com/
Author: Apexive OSS
Author-email: open-source@apexive.com
License: MIT
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Django DF API DRF

Module for automatic including Djangoflow apps API to your project.

## Installation:

- Install the package

```
pip install django-df-api-drf
```

- Add the package to your INSTALLED_APPS

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

- Add the package to your urls.py

```
urlpatterns = [
    ...
    path("api/v1/", include("df_api_drf.urls")),
    ...
]
```
