An open API service indexing awesome lists of open source software.

https://github.com/bryant/pytoml

python serializer/deserializer for toml.
https://github.com/bryant/pytoml

Last synced: 6 months ago
JSON representation

python serializer/deserializer for toml.

Awesome Lists containing this project

README

          

pytoml
======

A [TOML](https://github.com/mojombo/toml) parser for Python 2/3 which conforms
to [67b8e59f](https://github.com/mojombo/toml/commit/67b8e59f) and earlier.

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

Features
--------

* Uses [pyparsing](http://pyparsing.wikispaces.com/) and a formal grammar
* Extensive test suite and sample files