validation for aiohttp swagger openAPI 3
Project description
aiohttp-swagger3
!!! Testers are needed !!!
Feel free to try this library and raise an issue if it does not work as expected, thanks!
About
Package for displaying swagger docs and optionally validating/parsing aiohttp requests using swagger specification 3.0 only.
It's marked as pre-alpha on pypi.org, but that's because I haven't decided architecture yet. However, we use it in production :)
Disable validation
Okay, just pass validate=False
to SwaggerDocs
/SwaggerFile
class, default is True
Requirements
- python3.6+
- aiohttp>=3
- pyyaml
- attrs
- openapi-spec-validator
- strict_rfc3339
Limitations
- only application/json and application/x-www-form-urlencoded supported for now, but you can create own handler
- header/query parameters only supported simple/form array serialization, e.g. 1,2,3,4
- see TODO below
Installation
pip install aiohttp-swagger3
Example
from aiohttp import web
from aiohttp_swagger3 import SwaggerDocs
async def get_one_pet(request: web.Request, pet_id: int) -> web.Response:
"""
Optional route description
---
summary: Info for a specific pet
tags:
- pets
parameters:
- name: pet_id
in: path
required: true
description: The id of the pet to retrieve
schema:
type: integer
format: int32
responses:
'200':
description: Expected response to a valid request
content:
application/json:
schema:
$ref: "#/components/schemas/Pet"
"""
if pet_id not in request.app['storage']:
raise web.HTTPNotFound()
return web.json_response(request.app['storage'][pet_id])
def main():
app = web.Application()
s = SwaggerDocs(app, '/docs', title="Swagger Petstore", version="1.0.0", components="components.yaml")
s.add_routes([
web.get("/pets/{pet_id}", get_one_pet),
])
app['storage'] = {}
web.run_app(app)
More examples
Features
- application/json
- application/x-www-form-urlencoded (except array and object)
- items
- properties
- pattern
- required
- enum
- minimum
- maximum
- exclusiveMinimum
- exclusiveMaximum
- minLength
- maxLength
- minItems
- maxItems
- uniqueItems
- minProperties
- maxProperties
- default (only primitives)
- additionalProperties
- nullable
- allOf
- oneOf
- anyOf
- string formats: date, date-time, password, byte, binary, email, uuid, hostname, ipv4, ipv6
TODO (raise an issue if needed)
-
swagger specific
- multipleOf
- not
- allowEmptyValue
- Common Parameters for All Methods of a Path (spec file only)
- readOnly, writeOnly
- more serialization methods, see: https://swagger.io/docs/specification/serialization/
- encoding
- form data serialization (array, object)
- default (array, object)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiohttp-swagger3-0.2.1.tar.gz
(413.2 kB
view details)
Built Distribution
File details
Details for the file aiohttp-swagger3-0.2.1.tar.gz
.
File metadata
- Download URL: aiohttp-swagger3-0.2.1.tar.gz
- Upload date:
- Size: 413.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dae6b6ab41970bff523e1e302238d0f480134006454ef1c66f3a2a0b9e7937e3 |
|
MD5 | 160232607fb2f2ff6040809f8cef2c73 |
|
BLAKE2b-256 | 8723ff0b8962624449f8ef483687782b3b65ab8fad5877f7feca0874f46e27f2 |
File details
Details for the file aiohttp_swagger3-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: aiohttp_swagger3-0.2.1-py3-none-any.whl
- Upload date:
- Size: 422.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6587a195094f4862416b71ce9fd42aad5538cfda5753f0dfc341ca9411d9ed47 |
|
MD5 | a6a2bc968a7ffacd4c076f3fa89dace3 |
|
BLAKE2b-256 | ec20de6b5b386bc75013693291e120c6c636f966ca64647efa13c238676d54de |