Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 415 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 415 Bytes

pytoml

A TOML parser for Python 2/3 which conforms to 67b8e59f and earlier.

>>> import pytoml
>>> pytoml.loads('hooray = ["for", "toml"]')
{'hooray': [u'for', u'toml']}

Features

  • Uses pyparsing and a formal grammar
  • Extensive test suite and sample files