
json — JSON encoder and decoder — Python 3.13.3 documentation
1 day ago · Decode a JSON document from s (a str beginning with a JSON document) and return a 2-tuple of the Python representation and the index in s where the document ended.
18.2. json — Encodage et décodage JSON — Documentation …
Decode a JSON document from s (a str or unicode beginning with a JSON document) and return a 2-tuple of the Python representation and the index in s where the document ended.
pickle — Python object serialization — Python 3.13.3 documentation
2 days ago · JSON is a text serialization format (it outputs unicode text, although most of the time it is then encoded to utf-8), while pickle is a binary serialization format; JSON is human …
pprint — Data pretty printer — Python 3.13.3 documentation
3 days ago · The pprint module provides a capability to “pretty-print” arbitrary Python data structures in a form which can be used as input to the interpreter. If the formatted structures …
marshal — Internal Python object serialization — Python 3.13.3 ...
2 days ago · This module contains functions that can read and write Python values in a binary format. The format is specific to Python, but independent of machine architecture issues (e.g., …
configparser — Configuration file parser — Python 3.13.3 …
2 days ago · This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI files. You …
Installing Python Modules — Python 3.13.3 documentation
2 days ago · Basic usage ¶ The standard packaging tools are all designed to be used from the command line. The following command will install the latest version of a module and its …
The Python Standard Library — Python 3.13.3 documentation
2 days ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as …
Logging Cookbook — Python 3.13.3 documentation
import zmq # using pyzmq, the Python binding for ZeroMQ import json # for serializing records portably ctx = zmq.Context() sock = zmq.Socket(ctx, zmq.PUB) # or zmq.PUSH, or other …
7. Input and Output — Python 3.13.3 documentation
2 days ago · The standard module called json can take Python data hierarchies, and convert them to string representations; this process is called serializing. Reconstructing the data from the …