Metadata-Version: 1.1
Name: django-swagger-ui
Version: 0.1.2
Summary: Django swagger UI is a viewer for Swagger YAML files as html.
Home-page: https://github.com/assem-ch/django-swagger-ui
Author: Assem Chelli
Author-email: assem.ch@gmail.com
License: BSD License
Description: =================
        Django Swagger UI
        =================
        Django swagger UI is a viewer for Swagger YAML files as html.
        
        
        
        Quick start
        -----------
        
        1. Add "swagger_ui" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'swagger_ui',
                ...
            ]
        
        2. Include the swagger ui URLconf in your project urls.py like this::
        
            path('', include('swagger_ui.urls')),
        
        
        3. Add this variable `SWAGGER_YAML_FILE` to `settings.py` pointing to your YAML file
        
        
        4. You will find the swagger api documentation in  `/api-doc/`.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
