Tag Archive > serialize

Serializing native data in Python

For a project I’m currently working on I needed to serialize some structures in Python. The only premise is that they were only made with basic/native Python types, such as lists, dicts, strings, integers, …

The thinkgs I was considering were:

compact representation
fast serialization/deserialization
human-readable / human-editable a must

So after thinking for a while, I found 3 possible [...]

Continue reading

, , , , ,