Skip to content

Tag: async-await

Executing an awaitable / async function in Python RQ

My jobs are all a series of requests that need to be made per object. Ie, its a User with several data points (potentially hundreds) that need to be added to that user with requests. I had originally written those requests to run synchronously but it was blocking and slow. I was sending each User job to Pytho…

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 suppo…