Thanks, Dave -- https://mail.python.org/mailman/listinfo/python-list
I created a python program that gets data from a user, stores the data
as a dictionary in a list of dictionaries. When the program quits, it
saves the data file. My desire is to append the new data to the
existing data file as is done with purely text files. However, I can't
find a way to do that. The advice I have seen on the web is to load the
data when the program starts, append the new user input to the list,
then re-write the data file. Is that the best way, or is there a better
way?
- Appending data to a json file Dave
- Re: Appending data to a json file Michael Torrie
- Re: Appending data to a json file dieter
- Re: Appending data to a json file Oren Ben-Kiki
- Re: Appending data to a json file Michael Torrie
- Re: Appending data to a json file Jussi Piitulainen
- Re: Appending data to a json file Michael Torrie
- Re: Appending data to a json file Dave
- Re: Appending data to a json file Ben Finney
- Re: Appending data to a json file Grant Edwards
- Re: Appending data to a json file Rob Gaddi