Flask - Ecosystem and Patterns
What response will this async Flask route return when accessed?
from flask import Flask
import asyncio
app = Flask(__name__)
@app.route('/greet')
async def greet():
await asyncio.sleep(0.2)
return 'Hello from async'