commit | 42456073a5ef1a1c34be50bee860da17bd1e529a | [log] [tgz] |
---|---|---|
author | Martin Vejnár <vejnar.martin@gmail.com> | Wed Jun 21 11:31:58 2017 +0200 |
committer | GitHub <noreply@github.com> | Wed Jun 21 11:31:58 2017 +0200 |
tree | 4ef6f63c6a96ee98336d1e56b35ba0d3fa8cdd84 | |
parent | 270397b47900fca371608d374da191f326c0e794 [diff] | |
parent | ed6ae5ea1c67de3de1808d36b37ed665d9d5706a [diff] |
Merge pull request #31 from raphlinus/master Add support for keys being literal strings
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