Skip to main content

A lil' TOML parser

Project description

Build Status codecov.io PyPI version

Tomli

A lil' TOML parser

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

Installation

pip install tomli

Usage

Parse a TOML string

import tomli

toml_str = """
gretzky = 99

[kurri]
jari = 17
"""

toml_dict = tomli.loads(toml_str)
assert toml_dict == {"gretzky": 99, "kurri": {"jari": 17}}

Parse a TOML file

import tomli

with open("path_to_file/conf.toml", encoding="utf-8") as f:
    toml_dict = tomli.load(f)

Handle invalid TOML

import tomli

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

Construct decimal.Decimals from TOML floats

from decimal import Decimal
import tomli

toml_dict = tomli.loads("precision-matters = 0.982492", parse_float=Decimal)
assert isinstance(toml_dict["precision-matters"], Decimal)

FAQ

Why this parser?

  • it's lil'
  • pure Python with zero dependencies
  • fairly fast (but pure Python so can't do any miracles there)
  • 100% spec compliance: passes all tests in a test set soon to be merged to the official compliance tests for TOML repository
  • 100% test 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 (list, int, str, datetime.datetime etc.). Preserving comments requires a custom type to be returned so will not be supported, at least not by the tomli.loads function.

Is there a dumps, write or encode function?

Not yet, and it's possible there never will be.

Performance

The benchmark/ folder in this repository contains a performance benchmark for comparing the various Python TOML parsers. The benchmark can be run with tox -e benchmark-pypi. On May 28 2021 running the benchmark output the following on my notebook computer.

foo@bar:~/dev/tomli$ tox -e benchmark-pypi
benchmark-pypi installed: attrs==19.3.0,click==7.1.2,pytomlpp==1.0.2,qtoml==0.3.0,rtoml==0.6.1,toml==0.10.2,tomli==0.2.0,tomlkit==0.7.2
benchmark-pypi run-test-pre: PYTHONHASHSEED='305387179'
benchmark-pypi run-test: commands[0] | python benchmark/run.py
Parsing data.toml 5000 times:
------------------------------------------------------
    parser |  exec time | performance (more is better)
-----------+------------+-----------------------------
  pytomlpp |     1.16 s | baseline
     rtoml |     1.17 s | 1x baseline
     tomli |     8.94 s | 0.13x baseline
      toml |     9.33 s | 0.12x baseline
     qtoml |     15.7 s | 0.074x baseline
   tomlkit |       70 s | 0.017x baseline

The parsers are ordered from fastest to slowest, using the fastest parser (pytomlpp) as baseline. Tomli performed the best out of all pure Python TOML parsers, losing only to pytomlpp (wraps C++) and rtoml (wraps Rust).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tomli-0.2.2.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

tomli-0.2.2-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file tomli-0.2.2.tar.gz.

File metadata

  • Download URL: tomli-0.2.2.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.7.10 Linux/5.4.0-1047-azure

File hashes

Hashes for tomli-0.2.2.tar.gz
Algorithm Hash digest
SHA256 20da8bf7a6dc239eba1cefdec2b2add76ff4d68e2b632c5a4f6b7809a743757d
MD5 610dfb1e126aff0b08b6c34db2207eba
BLAKE2b-256 a4b608d0e73c1ec29752520b466118aec4cfad6d3018116a7c5658f1357d0169

See more details on using hashes here.

File details

Details for the file tomli-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: tomli-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.7.10 Linux/5.4.0-1047-azure

File hashes

Hashes for tomli-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cb2c3df0f69e13e7bbc44ba2286d965126347ad0f718c0f9fc53163a61851e69
MD5 898441ee09cdd949dd00d4245aa91b56
BLAKE2b-256 acbf48a4f20019e27b2107c6848b9403de30ca9f7fe7667f5cdb84fae31ac22b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page