Metadata-Version: 2.1
Name: drfrequests
Version: 0.1
Summary: Document Web APIs made with Django Rest Framework.
Home-page: https://github.com/suhailvs/drfrequests
Author: Suhail VS
Author-email: suhailvs@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/suhailvs/drfrequests/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# drfrequests

Django Rest Framework Requests



### Installation

Install using pip:

    pip install drfrequests

Add 'rest_framework_docs' to your `INSTALLED_APPS` setting:

    INSTALLED_APPS = (
        ...
        'rest_framework_docs',
    )

Finally include the `rest_framework_docs` urls in your `urls.py`:

    urlpatterns = [
        ...
        url(r'^docs/', include('rest_framework_docs.urls')),
    ]


### Settings
You can find detailed information about the package's settings at [the docs](http://drfdocs.com/settings/).

    REST_FRAMEWORK_DOCS = {
        'HIDE_DOCS': True  # Default: False
    }


### Credits

This project is a frok of <https://github.com/manosim/django-rest-framework-docs> which is a fork of <https://github.com/marcgibbons/django-rest-framework-docs>


### Test Build

* increment the version number in your `setup.cfg` file
* `$ python3 -m build`
* First upload to TestPypi: `twine upload --repository testpypi dist/*`
* install `pip install --index-url https://test.pypi.org/simple/ --no-deps drfrequests`



