Support for datetime.
1 file changed
tree: 08cdaa8341c6fba42391a1792a20e1a7cb0f642b
  1. pytoml/
  2. test/
  3. LICENSE
  4. MANIFEST.in
  5. README.md
  6. setup.py
README.md

pytoml

This project aims at being a specs-conforming and strict parser for TOML files. The parser currently supports version 0.4.0 of the specs.

The project supports 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:
...     toml.load(fin)
{'a': 1}

The loads function accepts either a bytes object (that gets decoded as UTF-8 with no BOM allowed), or a unicode object.