commit | 0b63d2aa1cdb9d7653f01346eff2acc7cf6e2e32 | [log] [tgz] |
---|---|---|
author | Martin Vejnár <avakar@ratatanek.cz> | Thu Apr 13 14:42:22 2017 +0200 |
committer | GitHub <noreply@github.com> | Thu Apr 13 14:42:22 2017 +0200 |
tree | d365c7f55057941fb156fbcbfdfb9d0d33304143 | |
parent | 0c66395b7b43dce3984c0c57053d8bed43ea425c [diff] | |
parent | c0d9430cd50c0e8a8bc1d59b12f1accea09077eb [diff] |
Merge pull request #24 from yangle/master fix float dumping
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