Transmitting and Sharing Objects

We'll expand on our serialization techniques for the object representation started in Chapter 10, Serializing and Saving – JSON, YAML, Pickle, CSV, and XML. When we need to transmit an object, we perform some kind of REpresentational State Transfer (REST), which includes serializing a representation of the state of the object. This representation can then be transferred to another process (usually on another host computer); the receiving process can then build a version of the original object from the representation of the state and a local copy of the class definition.

Decomposing REST processing into the two aspects of representation and transfer lets us solve these problems independently. There are a variety ...

Get Mastering Object-Oriented Python - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.