How to obtain Dict from a Flask Request Form
The request.form returns an immutable dictionary object [ImmutableMultiDict]. Which means its a frozen object and that you cannot change the values.
However in some cases you might wanna change the values. Such as creating a slug from a title before ...
vortex.hashnode.dev