Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Comments on Is there a text version of pickle?
Post
Is there a text version of pickle?
+1
−1
Is there a Python serialization format that has capabilities similar to Pickle, but is text based?
The problem I always have with pickle is that it's binary, so I can't manually view or edit the data.
The standard library includes json
, but that requires a tedious converting of types at read and write.
2 comment threads