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

When the docstring is invalid yaml/swagger, the generated swagged documentation just shows: ``` Invalid Swagger ⚠ Swagger document could not be loaded from docstring ⚠ ``` This change makes the...

I have the following structure in my project: ``` project ├── core │ └── factory.py └── docs └── swagger.yaml ``` My `core.factory.py` loads the swagger.yaml in the `build_app` function with:...

I'm trying to add new content to the `script` so i can decide if i want to show the endpoint list or not but i seems that there's no easy...

This is an issue to judge interest in making the parser for docstrings more flexible (I will create a PR if so). Currently it looks like everything past `---` is...

It has some bugs fixed. For example a bug with forward slash in tag: swagger-api/swagger-ui#2372

Hello. For validation incoming data from client I use Jsonschema. Is there way to describe format of data from the Jsonschema?

Hi, Versions: python==3.7.3 aiohttp==3.5.4 aiohttp-swagger==1.0.7 If I try to run examples from https://aiohttp-swagger.readthedocs.io/en/latest/quick_start.html, it doesn't work. Example: ```>from aiohttp import web >from aiohttp_swagger import * >async def ping(request): ... """...

Support python 3.7 so that the recent security features can be used. Many thanks!

Recently PyYAML was released new version 5.1 and tests for my application detects new warning `yaml.YAMLLoadWarning` for `aiohttp-swagger`: ``` Traceback (most recent call last): File "/home/_/.pyenv/versions/3.7.0/lib/python3.7/multiprocessing/process.py", line 297, in _bootstrap...

``` class MyView(web.View): async def get(self): return await get_resp(self.request) async def post(self): return await post_resp(self.request) app.router.add_route('*', '/path/to', MyView) ```

enhancement