A lil' TOML parser
Project description
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}}
Handle invalid TOML
import tomli
try:
toml_dict = tomli.loads("]] this is invalid TOML [[")
except tomli.TOMLDecodeError:
print("Yep, definitely not valid.")
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='3494638500'
benchmark-pypi run-test: commands[0] | python benchmark/run.py
Parsing data.toml 5000 times:
pytomlpp: 1.126 s
rtoml: 1.178 s (1.0x slower)
tomli: 8.913 s (7.9x slower)
toml: 9.456 s (8.3x slower)
qtoml: 15.925 s (14.1x slower)
tomlkit: 71.509 s (63.5x slower)
Tomli performed the best out of all pure Python TOML parsers, losing only to pytomlpp (wraps C++) and rtoml (wraps Rust).
FAQ
Why this parser?
- it's lil'
- 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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tomli-0.2.1.tar.gz.
File metadata
- Download URL: tomli-0.2.1.tar.gz
- Upload date:
- Size: 11.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60ee0e28cac2e284e05a499f2b8249adaf77af7fa3ad66a2964682265d7a765c
|
|
| MD5 |
d1bfe8ea55e4410b1b80947f8f344b7d
|
|
| BLAKE2b-256 |
31bdee6f3c53d6c624d569b9d155e9987b88cb60d9e41153f58c6a45b39e5977
|
File details
Details for the file tomli-0.2.1-py3-none-any.whl.
File metadata
- Download URL: tomli-0.2.1-py3-none-any.whl
- Upload date:
- Size: 9.1 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b38f93acec52b92e408d272f30632ae32f03855f161b3faca5bc6017a2132625
|
|
| MD5 |
aa38bed4d3ddd56ceae7faf24cbba76d
|
|
| BLAKE2b-256 |
33c28294acf1d0b1a6db656b03f796f55377362afccd3bbaa4803c16559d08fe
|