commit | ce58143dbf1366f1c408217187c5e041b2659c7b | [log] [tgz] |
---|---|---|
author | Damien Miller <djm@google.com> | Wed Apr 04 17:35:25 2018 +1000 |
committer | Damien Miller <djm@google.com> | Wed Apr 04 18:02:50 2018 +1000 |
tree | 8bfe71c832936146f97f8d8cd277bdfb9d24ca81 | |
parent | 0da990a6b87dcdca8b1d6075098a2b9d735bc57e [diff] |
Update README.fuchsia Change-Id: I13c18a946019776564d8d99e6c6e5bf6398b8cac
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.3+.
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
To run the tests update the toml-test
submodule:
$ git submodule update --init --recursive
Then run the tests:
$ python test/test.py