I am trying to run quart on collab but it doesnt seem to work?
This is my code (its from here)
!pip install quart
from quart import Quart
app = Quart(__name__)
@app.route("/hello")
async def hello():
return "Hello, World!"
if __name__ == "__main__":
app.run(debug=True)