I had a project which was making API calls that could take 90 seconds to generate a response from external services. My flask API was obviously blocked and when I started letting other users on I fixed the bottleneck by updating (I think) 3-5 lines of code and adding an asyncio loop.
From my limited use it does seem like a drop in replacement for 'async flask'
From my limited use it does seem like a drop in replacement for 'async flask'