commit | f1cec5e80768fbb9d5f030610bc46c627c8fc732 | [log] [tgz] |
---|---|---|
author | Martin Vejnár <avakar@ratatanek.cz> | Fri Jul 03 21:41:01 2015 +0200 |
committer | Martin Vejnár <avakar@ratatanek.cz> | Fri Jul 03 21:41:01 2015 +0200 |
tree | d31cb9a07ffe5e3ad0cd85933c89e1f9471ff2cc | |
parent | ecc0ddeb78fd2795e00670c888a3c36fc6a9d9ce [diff] |
Add travis config
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.7 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