show/hide this revision's text 5 Typo

Load your file with JSON or PyYAML into a dictionary the_dict (see doc for JSON or PyYAML for this step, both can store data type) and add the dictionary to your globals dictionary, e.g. using

for x in the_dict:
    globals()[x] = the_dict[x]
globals().update(the_dict).

If you want it in a local dictionary instead (e.g. inside a function), you can do it like this:

for x in the_dict.items():
    exec('%s=%s' % x)

as long as it is safe to use exec. If not, you can use the dictionary directly.

show/hide this revision's text 4 added 69 characters in body

Load your file with JSON or PyYAML into a dictionary the_dict (see doc for JSON or PyYAML for this step, both can store data type) and add the dictionary to your globals dictionary, e.g. using

for x in the_dict:
    globals()[x] = the_dict[x]

If you want it in a local dictionary instead (e.g. inside a function), you can do it like this:

for x in the_dict.items():
    exec('%s=%s' % x)

as long as it is safe to use exec. ..If not, you can use the dictionary directly.

show/hide this revision's text 3 Added local dict example; added 42 characters in body

Load your file with JSON or PyYAML into a dictionary the_dict (see doc for JSON or PyYAML for this step) and add the dictionary to your globals dictionary, e.g. using

for x in the_dict:
    globals()[x] = the_dict[x]

If you want it in a local dictionary instead (e.g. inside a function), you can do it like this:

for x in the_dict.items():
    exec('%s=%s' % x)

as long as it is safe to use exec...

show/hide this revision's text 2 Added example; added 43 characters in body
show/hide this revision's text 1