--

Pickle is great for storage or serializing data. Lately, I have been using shelve (pickle or dbm for the backend) for state databases. Pickle tends to be good for working with your own ecosystem or program. However, exporting data to disparate systems, CSV seems to be the format of choice in my neck of the IT world with JSON being second.

--

--