I set up a very basic Python API server with falcon along the example given in the documentation. And it seems to work just fine. Now I extended the code to support HTTPS requests using SSL certificates And again, it seems to work and HTTPS requests are served perfectly fine…in the beginning. However, after a while — maybe a few
Tag: falconframework
How to use async await in python falcon?
I am looking for example of using async await features of python 3. I am using falcon framework for building rest api. Can’t figure out how to use async await with it. Please help me, by providing some examples, maybe with other frameworks. Thank you! Answer Update: as of Falcon 3.0, the framework supports async / await via the ASGI