i have to acess some variables and transform them back to json format.
They are stored in columns, i have:
name = request.values['name']
age = request.values['age']
This gives me back something like:
John 23
How to transform this to:
'{"name":"John", "age":"23"}'