Skip to content

Instantly share code, notes, and snippets.

@gtrias
Created January 11, 2016 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gtrias/3d04314582c410641be4 to your computer and use it in GitHub Desktop.
Save gtrias/3d04314582c410641be4 to your computer and use it in GitHub Desktop.
Convert array parameter whatever[index] to dict
def multiarraytodict(listname):
from flask import request
options = dict()
for key, value in request.form.items():
if key[:len(listname)] == listname:
options[key[len(listname)+1:-1]] = value
return options
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment