commit | 45b1221adb6b0945e8e954bfaa651fbc47e40889 | [log] [tgz] |
---|---|---|
author | Martin Vejnár <vejnar.martin@gmail.com> | Sat May 20 20:10:26 2017 +0200 |
committer | GitHub <noreply@github.com> | Sat May 20 20:10:26 2017 +0200 |
tree | fa470f220a36cbfa875ca6bb5b33db4aef83276d | |
parent | e4ec5fb6b0fc3368844fec6b339b7ef063550612 [diff] | |
parent | 3cc8cc1969eb000a45b6f551540ca7d70c0975bf [diff] |
Merge pull request #30 from mwilliamson/non-finite-float-errors Add tox/py.test and raise error when dump is called with non-finite floats
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