aiohttp_apiset
aiohttp_apiset copied to clipboard
Package to build routes using swagger specification
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 3.0.0 to 4.0.0. Changelog Sourced from pytest-cov's changelog. 4.0.0 (2022-09-28) Note that this release drops support for multiprocessing. --cov-fail-under no longer causes pytest --collect-only to fail Contributed...
Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.8.1 to 3.8.3. Release notes Sourced from aiohttp's releases. 3.8.3 .. attention:: This is the last :doc:aiohttp <index> release tested under Python 3.6. The 3.9 stream is...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.0 to 3.1.1. Release notes Sourced from codecov/codecov-action's releases. 3.1.1 What's Changed Update deprecation warning by @slifty in codecov/codecov-action#661 Create codeql-analysis.yml by @mitchell-codecov in codecov/codecov-action#593 build(deps): bump...
Now we have models for Swagger 2.0 and OpenAPI 3.1 specification. And there is a compatibility layer for internal usage (e.g. when we want to add a route and read...
Calling an endpoint and not specifying the value for an array query parameter results in handler receiving [''] For example , when requesting `curl -i -X GET "http://127.0.0.1:8080/test?ids="` in the...
Bumps [attrs](https://github.com/python-attrs/attrs) from 21.4.0 to 22.1.0. Release notes Sourced from attrs's releases. 22.1.0 Highlights The main features of this release are: The departure of Python 2.7 (enjoy your retirement!), and...
Bumps [pytest-mypy](https://github.com/dbader/pytest-mypy) from 0.8.0 to 0.9.1. Release notes Sourced from pytest-mypy's releases. v0.9.1 https://github.com/dbader/pytest-mypy/milestone/17 v0.9.0 https://github.com/dbader/pytest-mypy/milestone/14 v0.8.1 https://github.com/dbader/pytest-mypy/milestone/16 Changelog Sourced from pytest-mypy's changelog. 0.9.1 Add support for pytest 7. 0.9.0...
Hello, Using aiohttp_apiset together with a yaml-based specs file with __openapi: "3.0.0"__, my code looks like this: ``` opmap = create_default_operation_mapping(Path(BASE / SPEC_FILE)) router = SwaggerRouter( swagger_ui='/apidoc/', version_ui=3, search_dirs=[BASE], default_validate=True,...
According to the documentation: http://aiohttp-apiset.readthedocs.io/en/latest/ the library is supposed to work with a "foreign specification" strategy where the entire OpenAPI specification is read from an external file. So, when I...
Hello, I've tried use json specs to generate api, but example shows me empty page with methods. If i'll put url to swagger browser to json - it loaded api...