Short question to you programming folks:
What does Pythons (flask)
request.args.get(..) return?
A string / varchar?
Thanks! 😬
@TFG That will return a string. `args` is a MultiDict[str, str]
according to https://devdocs.io/flask~2.0/api/index#flask.Request.
`varchar` isn't really a thing in python, but whatever requests returns should be compatible with a varchar field in your db.