####An API documentation generator for Swagger UI and Django REST Framework version > 2.3.5
For older versions of Django REST Framework, see Django REST Framework Docs
From PyPI: pip install django-rest-swagger
From source:
- Download the source
- Extract files
- Run
python setup.py install
This application was developed and tested on:
- Django 1.5.1 - 1.5.4
- Django REST Framework 2.3.4 - 2.3.8
Backwards compatibility for earlier Django & Django REST Framework versions will be added in a future release. Meanwhile, please use Django REST Framework Docs to document your projects.
Note: This application will not work with Django REST Framework < 2.3
-
Add
rest_framework_swagger
to yourINSTALLED_APPS
setting like this:INSTALLED_APPS = ( ... 'rest_framework_swagger', )
-
Include the rest_framework_swagger URLs to a path of your choice
patterns = ('', ... url(r'^api-docs/', include('rest_framework_swagger.urls')), )
Further configuration can optionally be made from your project's settings.py
.
- Exclude namespaces: you may wish to exclude a set of URLs from documentation. By default, all views that are subclassed from Django REST Framework APIView will be included for documentation
- API Version: your API's version. Default is blank.
- Enabled methods: You may specify the methods that can be interacted with in the UI
- API key: you can specify a key for your API. Default is blank
SWAGGER_SETTINGS = {
"exclude_namespaces": [], # List URL namespaces to ignore
"api_version": '0.1', # Specify your API's version
"api_path": "/", # Specify the path to your API not a root level
"enabled_methods": [ # Specify which methods to enable in Swagger UI
'get',
'post',
'put',
'patch',
'delete'
],
"api_key": '', # An API key
"is_authenticated": False, # Set to True to enforce user authentication,
"is_superuser": False, # Set to True to enforce admin only access
}
This project is built on the Django REST Framework Docs and uses the lovely Swagger from Wordnik as an interface. This application introspectively generates documentation based on your Django REST Framework API code. Comments are generated in combination from code analysis and comment extraction. Here are some of the features that are documented:
- API title - taken from the class name
- Methods allowed
- Serializers & fields in use by a certain method
- Field default values, minimum, maximum, read-only and required attributes
- URL parameters (ie. /product/{id})
- Field
help_text
property is used to create the description from the serializer or model. - Query parameters (user-defined) - Custom parameters. It is possible to customize a parameter list for your API. To do so, include a key-value pair in the docstring of your API class delimited by two hyphens ('--'). Example: 'start_time -- The first reading':
class Countries(APIView):
"""
This text is the description for this API
param1 -- A first parameter
param2 -- A second parameter
"""
Included in this repository is a functioning example. Please clone the repo, copy or reference the rest_framework_swagger
directory into the cigar_example folder. Install the required packages using pip install -r requirements.txt
Please report bugs by opening an issue
Contributions are welcome and are encouraged !
Thanks to BNOTIONS for sponsoring development time and for being an awesome place to work, play & innovate
Many thanks to Tom Christie & all the contributors who have developed Django REST Framework
- Marc Gibbons (@marcgibbons)
- Geraldo Andrade (@quein)
- Vítek Pliska (@whit)
- Falk Schuetzenmeister (@postfalk)
- Lukas Hetzenecker (@lukas-hetzenecker)
- David Wolever (@wolever)
- Scott Mountenay (@scottmx81)
- @swistakm
- Peter Baumgartner (@ipmb)
- Marlon Bailey (@avinash240)
- Revisited doc algorithm
- Added support for APPEND_SLASH = False
- Fixed broken imports - Now supports DRF 2.3.8
- Added description on the model field
- URL flattening fixes
- API root prefix fix
- Improvments and bug fixes with relative imports in Python 3
- throbber.gif image is being pointed to local copy
- Added permission settings for Swagger docs. Default is now allow any, which will override REST Framework settings
- Fixed throbber.gif URL in the swagger-ui.min.js to point to Wordnik's resource