A minimal YAML Parser for Python
Project description
A minimal YAML Parser for Python
Please note that Poyo supports only a chosen subset of the YAML format.
It can only read but not write and is not compatible with JSON.
See the examples below to get an idea of what Poyo understands.
Installation
poyo is available for download from PyPI via pip:
$ pip install poyo
Poyo is 100% Python and does not require any additional libs.
Usage
Poyo comes with a parse_string() function, to load utf-8 encoded string data into a Python dict.
import codecs
import logging
from poyo import parse_string, PoyoException
logging.basicConfig(level=logging.DEBUG)
with codecs.open('tests/foobar.yml', encoding='utf-8') as ymlfile:
ymlstring = ymlfile.read()
try:
config = parse_string(ymlstring)
except PoyoException as exc:
logging.error(exc)
else:
logging.debug(config)
Example
In (YAML):
---
default_context: # foobar
greeting: こんにちは
email: "raphael@hackebrot.de"
docs: true
gui: FALSE
123: 456.789
someint: 1000000
foo: "hallo #welt" #Inline comment :)
trueish: Falseeeeeee
doc_tools:
- mkdocs
- 'sphinx'
- null
zZz: True
NullValue: Null
# Block
# Comment
Hello World:
null: This is madness # yo
gh: https://github.com/{0}.git
"Yay #python": Cool!
Out (Python):
{
u'default_context': {
u'greeting': u'こんにちは',
u'email': u'raphael@hackebrot.de',
u'docs': True,
u'gui': False,
123: 456.789,
u'someint': 1000000,
u'foo': u'hallo #welt',
u'trueish': u'Falseeeeeee',
u'doc_tools': [u'mkdocs', u'sphinx', None],
},
u'zZz': True,
u'NullValue': None,
u'Hello World': {
None: u'This is madness',
u'gh': u'https://github.com/{0}.git',
},
u'Yay #python': u'Cool!'
}
WHY?!
Because a couple of cookiecutter users, including myself, ran into issues when installing well-known YAML parsers for Python on various platforms and Python versions.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Code of Conduct
Everyone interacting in the Poyo project’s codebases, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.
License
Distributed under the terms of the MIT license, poyo is free and open source software.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file poyo-0.2.0.tar.gz
.
File metadata
- Download URL: poyo-0.2.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 514b58bd42baba06a9d8b67f4ce182405354e6c792b8bc08c040e481231ad27b |
|
MD5 | 4c703e4e10501c5742a0a4a1319ae314 |
|
BLAKE2b-256 | f1e6c9a36b6b67855a760615ebdcc8ce7ec49825c099059a6162678bb653bcb5 |
Provenance
File details
Details for the file poyo-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: poyo-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 375cbb6d8e0853a55488ada3f397f2dffd2099567dc0985adec4a917ba5578ea |
|
MD5 | be7193ef139af38ec0165b78acf6883c |
|
BLAKE2b-256 | 005685b7f0f74604968ca50001416898afb52b03e8da2b697cffc4dc7374e507 |