| commit | ecfe13528771510fdc6d9b190b0c398982143ee2 | [log] [tgz] |
|---|---|---|
| author | Martin Vejnár <avakar@ratatanek.cz> | Wed Mar 18 00:10:51 2015 +0100 |
| committer | Martin Vejnár <avakar@ratatanek.cz> | Wed Mar 18 00:10:51 2015 +0100 |
| tree | 6ee018da3ccbe2518b6d9cc24a76e944c879ad5f | |
| parent | d9f1bf3781941100ac3fee0721ae24df6dd2ecd5 [diff] |
Add dump and dumps.
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.4+.
Install:
easy_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