JJamesinvortex.hashnode.dev·Feb 7, 2020How to obtain Dict from a Flask Request FormThe 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 ...00