commit | 0160d954b3e4324a3527a6f6612fe62faebc83fa | [log] [tgz] |
---|---|---|
author | Martin Vejnár <vejnar.martin@gmail.com> | Sun Oct 28 15:21:47 2018 +0100 |
committer | Martin Vejnár <vejnar.martin@gmail.com> | Sun Oct 28 15:21:47 2018 +0100 |
tree | cdd6b898eead6d51912238af9c509e622be72370 | |
parent | 5b1b3844cdb2ba5c0246ad185aee28c0369c2084 [diff] |
Bump version number to 0.1.20
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.5+.
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