Skip to main content

validation for aiohttp swagger openAPI 3

Project description

aiohttp-swagger3

Build Status Code Coverage PyPI version Python version Code Style License

!!! Testers are needed !!!

Feel free to try this library and raise an issue if it does not work as expected, thanks!

About

Package for validating aiohttp requests using swagger specification 3.0.
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 :)

Requirements

  • python3.6+
  • aiohttp>3 (haven't tested with v2, though)
  • 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)

  • aiohttp specific

  • class based view

  • METH_ANY (*) routes

  • swagger specific

  • cookies

  • 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


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.1.4.tar.gz (412.5 kB view details)

Uploaded Source

Built Distribution

aiohttp_swagger3-0.1.4-py3-none-any.whl (421.1 kB view details)

Uploaded Python 3

File details

Details for the file aiohttp-swagger3-0.1.4.tar.gz.

File metadata

  • Download URL: aiohttp-swagger3-0.1.4.tar.gz
  • Upload date:
  • Size: 412.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.1 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.7

File hashes

Hashes for aiohttp-swagger3-0.1.4.tar.gz
Algorithm Hash digest
SHA256 4302e296034eb1724ee31e65359746ac00432134e2817baca0bc612a07ba87ee
MD5 03fc7b9ac8b3af997e25b71769f9a174
BLAKE2b-256 44da6367739144d734b383374b3f97d28efa77a1f2b903870f1e2b25305750a2

See more details on using hashes here.

File details

Details for the file aiohttp_swagger3-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: aiohttp_swagger3-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 421.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.1 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.7

File hashes

Hashes for aiohttp_swagger3-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c904453b4c11ecab16e2dfb3a2e8694899447ec5c55ff4daa4faaba7ca944966
MD5 4c58644adfc4b1f9974241179ecd6fcc
BLAKE2b-256 caa4867c5a5a45ca416a13f453890c5d27c7018e2149c5e9b412d7e88895b586

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page