tomllib --- Parse TOML files¶
Source code: Lib/tomllib
This module provides an interface for parsing TOML 1.1.0 (Tom's Obvious Minimal Language, https://toml.io). This module does not support writing TOML.
Ajouté dans la version 3.11: The module was added with support for TOML 1.0.0.
Modifié dans la version 3.15: Added TOML 1.1.0 support. See the What's New for details.
Avertissement
Be cautious when parsing data from untrusted sources. A malicious TOML string may cause the decoder to consume considerable CPU and memory resources. Limiting the size of data to be parsed is recommended.
Voir aussi
The Tomli-W package
is a TOML writer that can be used in conjunction with this module,
providing a write API familiar to users of the standard library
marshal and pickle modules.
Voir aussi
The TOML Kit package is a style-preserving TOML library with both read and write capability. It is a recommended replacement for this module for editing already existing TOML files.
Ce module définit les fonctions suivantes :
- tomllib.load(fp, /, *, parse_float=float)¶
Read a TOML file. The first argument should be a readable and binary file object. Return a
dict. Convert TOML types to Python using this conversion table.parse_float will be called with the string of every TOML float to be decoded. By default, this is equivalent to
float(num_str). This can be used to use another datatype or parser for TOML floats (e.g.decimal.Decimal). The callable must not return adictor alist, else aValueErroris raised.A
TOMLDecodeErrorwill be raised on an invalid TOML document.
- tomllib.loads(s, /, *, parse_float=float)¶
Load TOML from a
strobject. Return adict. Convert TOML types to Python using this conversion table. The parse_float argument has the same meaning as inload().A
TOMLDecodeErrorwill be raised on an invalid TOML document.
The following exceptions are available:
- exception tomllib.TOMLDecodeError(msg, doc, pos)¶
Sous-classe de
ValueErroravec les attributs additionnels suivants :- msg¶
Le message d'erreur non formaté.
- doc¶
The TOML document being parsed.
- pos¶
The index of doc where parsing failed.
- lineno¶
La ligne correspondant à pos.
- colno¶
La colonne correspondant à pos.
Modifié dans la version 3.14: Added the msg, doc and pos parameters. Added the
msg,doc,pos,linenoandcolnoattributes.Obsolète depuis la version 3.14: Passing free-form positional arguments is deprecated.
Exemples¶
Parsing a TOML file:
import tomllib
with open("pyproject.toml", "rb") as f:
data = tomllib.load(f)
Parsing a TOML string:
import tomllib
toml_str = """
python-version = "3.11.0"
python-implementation = "CPython"
"""
data = tomllib.loads(toml_str)
Conversion Table¶
TOML |
Python |
|---|---|
TOML document |
dict |
string |
str |
int (entier) |
int |
float (nombre à virgule flottante) |
float (configurable with parse_float) |
boolean |
bool (booléen) |
offset date-time |
datetime.datetime ( |
local date-time |
datetime.datetime ( |
local date |
datetime.date |
local time |
datetime.time |
array |
liste |
table |
dict |
inline table |
dict |
array of tables |
list of dicts |
Limits and interoperability considerations¶
tomllib places some limits on the documents it can handle,
and it preserves details that other TOML parsers are allowed to ignore.
When writing portable TOML files, only use features that are
guaranteed or recommended by the standard.
The implementation details listed here may change in future versions of Python.
- Tables/dicts
The TOML spec does not guarantee key/value pairs in TOML documents and tables to be in any specific order.
Particularité de l'implémentation CPython :
tomllibloads dictionary entries in the order they appear in the source.- Integers
TOML recommends supporting integers in
range(−2**63, 2**63).Particularité de l'implémentation CPython :
tomllibuses Python's limit on integer string conversion (4300 digits by default).- Floats
TOML recommends supporting at least IEEE 754 binary64 values, which means that numbers with more than 15 significant decimal digits are likely to be rounded.
Particularité de l'implémentation CPython :
tomllibuses Pythonfloatby default; on many common platforms this is the recommended binary64. Seesys.float_infofor details.- Nesting limit
TOML 1.1.0 does not recommend a limit on how deeply arrays and tables may be nested inside one another. (A limit of 100 has been proposed for a future version of TOML.)
Particularité de l'implémentation CPython : In
tomllib, the nesting level is mainly limited by Python'srecursion limit. Note that code that callstomllibmay contribute to the limit.