Votes
Answers
Views
Question
0
1
9567
I'm dumping a rather complicated dictionary to json, and something about the format is causing an error, "circular reference detected." I can't post the code but the basic format isĀ {a[a1: a1,v: [ v1: v1,v2: v2 ] f: [ f1: f1, f2: f2 ]]} filled in from variables through the code and pulling from an A...
0
0
109
Be first to answer!
For security reasons my client doesn't want to use anything not included in a base anaconda installation, is there a good way to dump a csv file as a list of dictionaries so I can work with it anyways? I'm looking for a robust solution where I don't need to have a pre-coded dictionary for each type ...
2
1
1001
I have a collection of zip file from a weekly process I run, each one contains a few csv and json files. One of the csvs contains an engine type that needs to be changed. Is there a good way to make an automated process that will unzip these folders, edit a file in them, and zip them back up? Doing ...