Metadata-Version: 2.1
Name: RackioSwagger
Version: 0.3
Summary: A Rackio extension to enable Swagger UI in API definitions
Home-page: https://github.com/rack-io/rackio-swagger
Author: Nelson Carrasquel
Author-email: rackio.framework@outlook.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: falcon-swagger-ui

# rackio-swagger
A Rackio extension to enable Swagger UI in API definitions

## Installation

```
pip install RackioSwagger
```

## Usage

```python
from rackio import Rackio
from rackio_swagger import RackioSwagger

app = Rackio()

RackioSwagger(app)

app.run(8028)
```

## Swagger UI

After running your application you will find the UI in the following address.

```
http://localhost:8028/swagger
```



