About 50 results
Open links in new tab
  1. pickle — Python object serialization — Python 3.14.3 documentation

    2 days ago · Python has a more primitive serialization module called marshal, but in general pickle should always be the preferred way to serialize Python objects. marshal exists primarily to support …

  2. json — JSON encoder and decoder — Python 3.14.3 documentation

    2 days ago · When serializing to JSON, beware any such limitations in applications that may consume your JSON. In particular, it is common for JSON numbers to be deserialized into IEEE 754 double …

  3. marshal — Internal Python object serialization

    2 days ago · If you’re serializing and de-serializing Python objects, use the pickle module instead – the performance is comparable, version independence is guaranteed, and pickle supports a substantially …

  4. Data Persistence — Python 3.15.0a5 documentation

    5 days ago · The modules described in this chapter support storing Python data in a persistent form on disk. The pickle and marshal modules can turn many Python data types into a stream of bytes and …

  5. multiprocessing — Process-based parallelism — Python 3.14.3 …

    1 day ago · One difference from other Python queue implementations, is that multiprocessing queues serializes all objects that are put into them using pickle. The object returned by the get method is a re …

  6. struct — Interpret bytes as packed binary data — Python 3.14.3 ...

    2 days ago · This module converts between Python values and C structs represented as Python bytes objects. Compact format strings describe the intended conversions to/from Python values.

  7. The Python Standard Library — Python 3.14.3 documentation

    2 days ago · While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with …

  8. xml.etree.ElementTree — The ElementTree XML API — Python 3.14.3 ...

    2 days ago · Note that while the attrib value is always a real mutable Python dictionary, an ElementTree implementation may choose to use another internal representation, and create the dictionary only if …

  9. email — An email and MIME handling package — Python 3.14.3 …

    2 days ago · This allows, for example, a generic email message to be parsed from disk, but to serialize it using standard SMTP settings when sending it to an email server. The email package does its best …

  10. multiprocessing.shared_memory — Shared memory for direct ... - Python

    2 days ago · Sharing data directly via memory can provide significant performance benefits compared to sharing data via disk or socket or other communications requiring the serialization/deserialization and …