-
-
Notifications
You must be signed in to change notification settings - Fork 767
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any ideas to migrate Connexion to Quart base? #889
Comments
Hey @lovesuper |
+1 and +1 for doing Quart separately from aiohttp if possible. Meanwhile, does connexion work well with aiohttp? I couldn't find much example and was facing a number of errors when trying to port a microservice and always thought it was me! |
By and large it works well. But you'll be digging into the source code at times to figure things out, because the documentation is sparse and oftentimes you can't tell if the docs are referring to something that only applies to Flask. It certainly feels like there is friction where Connexion has been adapted to an async model too, processing security headers is synchronous for example. |
Third party ASGI frameworks are supported starting 3.0: #1395 |
Description
Quart is a Python ASGI web microframework. It is intended to provide the easiest way to use asyncio functionality in a web context, especially with existing Flask apps. This is possible as the Quart API is a superset of the Flask API.
Expected behaviour
We can obtain async behaviour.
Actual behaviour
We have sync behaviour.
Additional info:
https://github.com/pgjones/quart
The text was updated successfully, but these errors were encountered: