Fetching Request param in Python Quart

1.4k views Asked by At

I am trying to convert my flask app to Quart ASGI, facing an issue when try to fetch request param/argument.

It gives an error when normal request is used with Quart

Example:
@app.route('/')
async def hello():
    return function(request.args.get('requestID'))

Not able to fetch param argument using request.args.get('requestID') in Quart

0

There are 0 answers