Skip to content

A lil' TOML parser

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE-HEADER
Notifications You must be signed in to change notification settings

hukkin/tomli

Repository files navigation

Build Statuscodecov.ioPyPI version

Tomli

A lil' TOML parser

Table of Contentsgenerated with mdformat-toc

Intro

Tomli is a Python library for parsing TOML. It is fully compatible with TOML v1.0.0.

A version of Tomli, the tomllib module, was added to the standard library in Python 3.11 via PEP 680. Tomli continues to provide a backport on PyPI for Python versions where the standard library module is not available and that have not yet reached their end-of-life.

Tomli uses mypyc to generate binary wheels for most of the widely used platforms, so Python 3.11+ users may prefer it over tomllib for improved performance. Pure Python wheels are available on any platform and should perform the same as tomllib.

Installation

pip install tomli

Usage

Parse a TOML string

importtomlitoml_str="""[[players]]name = "Lehtinen"number = 26[[players]]name = "Numminen"number = 27"""toml_dict=tomli.loads(toml_str) asserttoml_dict=={"players": [{"name": "Lehtinen", "number": 26},{"name": "Numminen", "number": 27}] }

Parse a TOML file

importtomliwithopen("path_to_file/conf.toml", "rb") asf: toml_dict=tomli.load(f)

The file must be opened in binary mode (with the "rb" flag). Binary mode will enforce decoding the file as UTF-8 with universal newlines disabled, both of which are required to correctly parse TOML.

Handle invalid TOML

importtomlitry: toml_dict=tomli.loads("]] this is invalid TOML [[") excepttomli.TOMLDecodeError: print("Yep, definitely not valid.")

Note that error messages are considered informational only. They should not be assumed to stay constant across Tomli versions.

Construct decimal.Decimals from TOML floats

fromdecimalimportDecimalimporttomlitoml_dict=tomli.loads("precision-matters = 0.982492", parse_float=Decimal) assertisinstance(toml_dict["precision-matters"], Decimal) asserttoml_dict["precision-matters"] ==Decimal("0.982492")

Note that decimal.Decimal can be replaced with another callable that converts a TOML float from string to a Python type. The decimal.Decimal is, however, a practical choice for use cases where float inaccuracies can not be tolerated.

Illegal types are dict and list, and their subtypes. A ValueError will be raised if parse_float produces illegal types.

Building a tomli/tomllib compatibility layer

Python versions 3.11+ ship with a version of Tomli: the tomllib standard library module. To build code that uses the standard library if available, but still works seamlessly with Python 3.6+, do the following.

Instead of a hard Tomli dependency, use the following dependency specifier to only require Tomli when the standard library module is not available:

tomli >= 1.1.0 ; python_version < "3.11" 

Then, in your code, import a TOML parser using the following fallback mechanism:

importsysifsys.version_info>= (3, 11): importtomllibelse: importtomliastomllibtomllib.loads("['This parses fine with Python 3.6+']")

FAQ

Why this parser?

  • it's lil'
  • pure Python with zero dependencies
  • the fastest pure Python parser *: 18x as fast as tomlkit, 2.1x as fast as toml
  • outputs basic data types only
  • 100% spec compliant: passes all tests in BurntSushi/toml-test test suite
  • thoroughly tested: 100% branch coverage

Is comment preserving round-trip parsing supported?

No.

The tomli.loads function returns a plain dict that is populated with builtin types and types from the standard library only. Preserving comments requires a custom type to be returned so will not be supported, at least not by the tomli.loads and tomli.load functions.

Look into TOML Kit if preservation of style is what you need.

Is there a dumps, write or encode function?

Tomli-W is the write-only counterpart of Tomli, providing dump and dumps functions.

The core library does not include write capability, as most TOML use cases are read-only, and Tomli intends to be minimal.

How do TOML types map into Python types?

TOML typePython typeDetails
Document Rootdict
Keystr
Stringstr
Integerint
Floatfloat
Booleanbool
Offset Date-Timedatetime.datetimetzinfo attribute set to an instance of datetime.timezone
Local Date-Timedatetime.datetimetzinfo attribute set to None
Local Datedatetime.date
Local Timedatetime.time
Arraylist
Tabledict
Inline Tabledict

Performance

The benchmark/ folder in this repository contains a performance benchmark for comparing the various Python TOML parsers.

Below are the results for commit 0724e2a.

Pure Python

foo@bar:~/dev/tomli$ python --versionPython 3.12.7foo@bar:~/dev/tomli$ pip freezeattrs==21.4.0click==8.1.7pytomlpp==1.0.13qtoml==0.3.1rtoml==0.11.0toml==0.10.2tomli @ file:///home/foo/dev/tomlitomlkit==0.13.2foo@bar:~/dev/tomli$ python benchmark/run.pyParsing data.toml 5000 times:------------------------------------------------------ parser | exec time | performance (more is better)-----------+------------+----------------------------- rtoml | 0.647 s | baseline (100%) pytomlpp | 0.891 s | 72.62% tomli | 3.14 s | 20.56% toml | 6.69 s | 9.67% qtoml | 8.27 s | 7.82% tomlkit | 56.1 s | 1.15%

Mypyc generated wheel

foo@bar:~/dev/tomli$ python benchmark/run.pyParsing data.toml 5000 times:------------------------------------------------------ parser | exec time | performance (more is better)-----------+------------+----------------------------- rtoml | 0.668 s | baseline (100%) pytomlpp | 0.893 s | 74.81% tomli | 1.96 s | 34.18% toml | 6.64 s | 10.07% qtoml | 8.26 s | 8.09% tomlkit | 52.9 s | 1.26%

About

A lil' TOML parser

Topics

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE-HEADER

Stars

Watchers

Forks

Contributors 14

Languages