I have a very large list of dictionaries (GBs in size) obtained from an API. I would like to use it as a lookup table for other functions. There are several object persistence methods in Python, but what would you recommend for storing lists of dictionaries on disk for easy referencing and lookup?
{
"library_id": "7",
"set_id": "80344779",
"description": "Very long description 1 ...",
"value": "1"
},
{
"library_id": "22",
"set_id": "80344779",
"description": "Very long description 2 ...",
"value": "1"
},
{
"library_id": "24",
"set_id": "80344779",
"description": "Very long description 3 ...",
"value": "8"
},