request-yo-racks / api

A REST API for the Request-Yo-Racks projects.
https://api.requestyoracks.org
MIT License
0 stars 4 forks source link

OpenAPI 3.0 server #60

Closed rgreinho closed 6 years ago

rgreinho commented 6 years ago

Issue Type

Current Behavior

It looks like DRF does not support OpenAPI 3.0. drf-yasg only support OpenAPI 2.0 and the author does not seem eager to implement version 3.0.

Expected Behavior

Generate a server from a well defined openapi.yml document.

Possible Solution

Connexion from Zalando seems to be the more promising framework. They recently finalized supporting OpenAPI 3.0 #420, #621 and are ironing out the last quirks before the next release #678.

Openapi-generator supports OpenApi 3.0 and has the ability to generate a python server using the connexion framework.

Quart is an ASGI framework implement the same interface as FLASK. It comes with an OpenAPI plugin.

Pyswagger is another active project.

Other projects without v3 support:

rgreinho commented 6 years ago

It will fix #28 as well.