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.
- Host: GitHub
- URL: https://github.com/bryant/pytoml
- Owner: bryant
- License: mit
- Created: 2013-02-25T00:38:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-05-20T05:03:01.000Z (about 12 years ago)
- Last Synced: 2023-04-09T22:19:10.232Z (about 3 years ago)
- Language: Python
- Size: 239 KB
- Stars: 19
- Watchers: 4
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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