Metadata-Version: 2.1
Name: drf-swagger-customization
Version: 0.1.5
Summary: This is a django app which you can modify and improve your autogenerated swagger documentation from your drf API.
Home-page: https://github.com/androiz/drf-swagger-customization
Author: Andres Rojano Ruiz
Author-email: androiz10@gmail.com
License: MIT
Keywords: drf-swagger-customization
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: djangorestframework>=3.6.3
Requires-Dist: django-rest-swagger>=2.0.5

=============================
drf-swagger-customization
=============================

.. image:: https://badge.fury.io/py/drf-swagger-customization.svg
    :target: https://badge.fury.io/py/drf-swagger-customization

.. image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat
    :target: http://drf-swagger-customization.readthedocs.io/en/latest/

This is a django app which you can modify and improve your autogenerated swagger documentation from your drf API.

Documentation
-------------

The full documentation is at https://drf-swagger-customization.readthedocs.io.

Quickstart
----------

Install drf-swagger-customization::

    pip install drf-swagger-customization


Add these global variables to your settings.py:

.. code-block:: python

    EXTENSION_PATH = os.path.join(PROJECT_DIR, 'docs/doc_extension.json') # Path to your extension file
    EXTERNAL_DOC_FOLDER = os.path.join(PROJECT_DIR, 'docs/external/') # Path to your external documentation folder


Add drf-swagger-customization's URL patterns:

.. code-block:: python

    from drf_swagger_customization.views import get_swagger_view

    schema_view = get_swagger_view(title='Pastebin API')

    urlpatterns = [
        ...
        url(r'^docs/$', schema_view),
        ...
    ]

Usage
--------
With this package we can increase the auto-generated documentation from django-swagger. That way, we can add documentation
from external APIs or add more information to our drf API methods such as fields, remove endpoints, update attributes, and so on.

In order to add information to our EXTENSION_PATH json file,  we have available these operations:

Create
~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: javascript

    {
        "operation": "create",
        "swagger-data": {
            "paths|/v1/travels/|get|parameters": [
                {
                  "name": "Field1",
                  "in": "query",
                  "required": true,
                  "type": "string"
                },
                {
                  "name": "Field2",
                  "in": "path",
                  "required": true,
                  "type": "integer"
                }
            ]
        }
    }

Update
~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: javascript

    {
        "operation": "update",
        "swagger-data": {
            "paths|/v1/travels/|get|parameters|field1": {
                "name": "Field1",
                "in": "query",
                "required": true,
                "type": "string"
            }
        }
    }


Remove
~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: javascript

    {
        "operation": "delete",
        "swagger-data": "paths|/v1/travels/|get|parameters|field1"
    }

Rename
~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: javascript

    {
        "action": "rename",
        "operation": {
            "paths|/v1/travels/": "/travels/",
            "paths|/v1/travels/{id}/": "/travels/{id}/"
        }
    }


Completed Sample
--------

.. code-block:: javascript

    [
      {
        "operation": "create",
        "swagger-data": {
          "paths|/v1/travels/|get|parameters": [
            {
              "name": "Field1",
              "in": "query",
              "required": true,
              "type": "string"
            },
            {
              "name": "Field2",
              "in": "path",
              "required": true,
              "type": "integer"
            }
          ]
        }
      },
      {
        "operation": "update",
        "swagger-data": {
          "paths|/v1/travels/|get|parameters|field1": {
            "name": "Field1",
            "in": "query",
            "required": true,
            "type": "string"
          }
        }
      },
      {
        "operation": "delete",
        "swagger-data": "paths|/v1/travels/|get|parameters|field1"
      },
      {
        "action": "rename",
        "operation": {
            "paths|/v1/travels/": "/travels/",
            "paths|/v1/travels/{id}/": "/travels/{id}/"
        }
      }
    ]


Future Work
--------

* Add an example
* Command for doc_file customization, in order to remove redundant executions.
* Improve the settings options.




History
-------

0.1.5 (2017-05-31)
++++++++++++++++++

* Added new action "Rename"

0.1.4 (2017-05-30)
++++++++++++++++++

* Bugfix with documentation

0.1.3 (2017-05-30)
++++++++++++++++++

* Bugfix with documentation

0.1.2 (2017-05-30)
++++++++++++++++++

* Improved documentation in order to explain how to build the json file

0.1.1 (2017-05-25)
++++++++++++++++++

* Fix in methods add, update and remove documentation.

0.1.0 (2017-05-24)
++++++++++++++++++

* First release on PyPI.
