| commit | e837728692a4c48ab8a7e69f402f8d2a03bfdf86 | [log] [tgz] |
|---|---|---|
| author | Martin Vejnár <vejnar.martin@gmail.com> | Sun Jul 21 19:54:30 2019 +0200 |
| committer | Martin Vejnár <vejnar.martin@gmail.com> | Sun Jul 21 19:54:30 2019 +0200 |
| tree | a1eac9cf26f6ee2f1ccad6da15e71bdc5dc470d4 | |
| parent | 646b9dbdcf54e732d6e2ada196c8a790e8682192 [diff] |
Update tests
The pytoml project is no longer being actively maintained. Consider using the toml package instead.
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