aiohttp-swagger icon indicating copy to clipboard operation
aiohttp-swagger copied to clipboard

Swagger API Documentation builder for aiohttp server

Results 53 aiohttp-swagger issues
Sort by recently updated
recently updated
newest added

I use library version `1.0.5` When I put `/` to the `tags` section the method expanding doesn't work, for exapmple: ```yaml description: Returns current scale settings tags: - API/Scale settings...

Swagger UI static assets are set to `` when they should actually live at `` if `setup_swagger` is called on a sub app like: ``` setup_app(v1) setup_swagger( v1, swagger_url='/doc', swagger_from_file="v1_swagger.json",...

This allows the swagger spec to look consistent when generated off endpoints. This is especially useful on Python3.5 I understand CPython3.6 and Python3.7+ specifies ordered dictionaries, but it would be...

Currently, `setup_swagger` is a one size fits all solution. It generates the `swagger_def` JSON file, then hosts a copy of [swagger-ui](/swagger-api/swagger-ui/) (a.k.a. `swagger_home`). I propose adding an option to decouple...

The `sdist` packages generated by `setup.py` are missing the `tests/data` directory, meaning that all tests fail when running from the source package (as opposed to from a git repo). This...

On Windows when using `swagger_from_file` argument and YAML file contains Cyrillic letters I get an error: ``` Traceback (most recent call last): File "app.py", line 162, in setup_swagger(app, swagger_from_file='swagger.yaml') File...

Is there a way to change the logo, the colors, etc of the UI ? If not, would you accept a pull request to support it ? Thanks.

This flow is terribly broken currently. It's partially affected by aio-libs/aiohttp#2656. But also it becomes messy in terms of setup sequence. For now I won't suggest a long-term solution (till...

`Overview:` if we declare route with class based view with method different from METH_ANY ('*') our endpoint doesn't show up There is a bug in `helpers/builders.py:43`: ``` if issubclass(route.handler, web.View)...

In order to be able to switch off swagger doc validation or change default URL by custom one **_SWAGGER_VALIDATOR_URL_** variable should be introduced in **_aiohttp_swagger/swagger_ui/index.html_** and supported in **_aiohttp_swagger/\_\_init\_\_.py_** by...