i'm picking a column name from the query string in flask but it is not accepting it code example
Example: python flask query params
from flask import request
@app.route('/data')
def data():
# here we want to get the value of user (i.e. ?user=some-value)
user = request.args.get('user')