A parser for TOML-0.4.0
Project description
pytoml
This project aims at being a specs-conforming and strict parser and writer for TOML files. The library currently supports version 0.4.0 of the specs and runs with Python 2.6+ and 3.4+.
Install:
pip install pytoml
The interface is the same as for the standard json package.
>>> import pytoml as toml
>>> toml.loads('a = 1')
{'a': 1}
>>> with open('file.toml', 'rb') as fin:
... obj = toml.load(fin)
>>> obj
{'a': 1}
The loads function accepts either a bytes object
(that gets decoded as UTF-8 with no BOM allowed),
or a unicode object.
Use dump or dumps to serialize a dict into TOML.
>>> print toml.dumps(obj)
a = 1
tests
To run the tests update the toml-test submodule:
git submodule update --init --recursive
Then run the tests:
python test/test.py
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
pytoml-0.1.18.tar.gz
(8.3 kB
view details)
File details
Details for the file pytoml-0.1.18.tar.gz.
File metadata
- Download URL: pytoml-0.1.18.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dae3c4e31d09eb06a6076d671f2281ee5d2c43cbeae16599c3af20881bb818ac
|
|
| MD5 |
c7f907c385a04da7a51916acb246874a
|
|
| BLAKE2b-256 |
71a2a5c13282c081624703aa43b22530a4c928839c25b96aa7466e5d127c9dd9
|