StackOverflow has a lot of scattered posts regarding Python modules used to save and load data.
I myself am familiar with json and pickle , and I heard about pytables . There are probably more. In addition, each module seems to correspond to a specific purpose and has its own limitations (for example, loading a large list or a dictionary with pickling takes a lot of time, if you work at all). Therefore, it would be nice to have a proper overview of the possibilities.
Could you help provide a complete list of modules used to save and load data describing for each module:
- What is the overall goal of the module,
- its limits
- why do you choose this module over others?
Benjamin
source share