Parse/serialize any markup format
Project description
Parse or serialize any markup. Currently supports ini, json, xml and yaml. Report bugs and new functionality requests at https://github.com/bkabrda/anymarkup/issues.
Parsing:
>>> import anymarkup >>> anymarkup.parse('foo: bar') {'foo': 'bar'} >>> anymarkup.parse_file('foo/bar.ini') {'section': {'subsection': {'opt2': 'bar'}, 'opt1': 'foo'}} $ cat foo/bar.ini [section] opt1=foo [[subsection]] opt2=bar
Serializing:
>>> import anymarkup >>> anymarkup.serialize({'foo': 'bar'}, 'json') b'{\n "foo": "bar"\n}' >>> anymarkup.serialize_file({'foo': 'bar'}, 'foo/bar.json') $ cat foo/bar.json { "foo": "bar" }
anymarkup is licensed under BSD license. You can download official releases from https://pypi-hypernode.com/pypi/anymarkup or install them via pip install anymarkup.
anymarkup works with Python 2.7 and >= 3.3.
Notes on Parsing Basic Types
When parsing, anymarkup recognizes basic types - NoneType, int, float and bool (and long on Python 2) and converts all values to these types. If you want to get everything as strings, just use force_types=False with parse or parse_file. Finally, you can also use force_types=None to get whatever the parsing backend returned:
>>> anymarkup.parse('a: 1') {'a': 1} >>> anymarkup.parse('a: 1', force_types=False) {'a': '1'} >>> anymarkup.parse('a: 1', force_types=None) {'a': 1}
Backends
anymarkup uses:
https://pypi-hypernode.com/pypi/configobj/ for ini parsing
https://docs.python.org/library/json.html for json parsing
https://pypi-hypernode.com/pypi/xmltodict for xml parsing
https://pypi-hypernode.com/pypi/PyYAML for yaml parsing
Notes on OrderedDict
Parsing certain types of markup can yield Python’s OrderedDict type - namely XML documents and YAML !!omap (see http://yaml.org/type/omap.html). anymarkup handles this without a problem, but note that if you serialize these as JSON or INI and then parse again, you’ll lose the ordering information (meaning you’ll get just dict back).
This is because JSON and INI parsers (to my knowledge) don’t consider ordering key-value structures important and there’s no direct means in these markup languages to express ordering key-value structures.
Notes on Dependencies
Read this section if you want anymarkup functionality only for subset of supported markup languages without the need to install all parsers.
Since version 0.5.0, anymarkup is just a wrapper library around anymarkup-core (https://github.com/bkabrda/anymarkup-core) and doesn’t actually contain any code, except of imports from anymarkup-core.
anymarkup-core goal is to not explicitly depend on any of the parsers, so people can install it with only a specified subset of dependencies. For example, you can install anymarkup-core only with PyYAML, if you know you’ll only be parsing YAML.
If you install anymarkup, you will always get a full set of dependencies and you will be able to parse any markup language that’s supported.
Examples
Parsing examples:
ini = """ [a] foo = bar""" json = """ {"a": { "foo": "bar" }}""" xml = """<?xml version="1.0" encoding="UTF-8"?> <a> <foo>bar</foo> </a>""" yaml = """ a: foo: bar """ # these will all yield the same value (except that xml parsing will yield OrderedDict) anymarkup.parse(ini) anymarkup.parse(json) anymarkup.parse(xml) anymarkup.parse(yaml) # explicitly specify a type of format to expect and/or encoding (utf-8 is default) anymarkup.parse('foo: bar', format='yaml', encoding='ascii') # by default, anymarkup recognizes basic types (None, booleans, ints and floats) # if you want to get everything as strings, just use force_types=False # will yield {'a': 1, 'b': True, 'c': None} anymarkup.parse('a: 1\nb: True\nc: None') # will yield {'a': '1', 'b': 'True', 'c': 'None'} anymarkup.parse('a: 1\nb: True\nc: None', force_types=False) # or parse a file anymarkup.parse_file('foo.ini') # if a file doesn't have a format extension, pass it explicitly anymarkup.parse_file('foo', format='json') # you can also pass encoding explicitly (utf-8 is default) anymarkup.parse_file('bar', format='xml', encoding='ascii')
Serializing examples:
struct = {'a': ['b', 'c']} for fmt in ['ini', 'json', 'xml', 'yaml']: # any of the above formats can be used for serializing anymarkup.serialize(struct, fmt) # explicitly specify encoding (utf-8 is default) anymarkup.serialize(struct, 'json', encoding='utf-8') # or serialize directly to a file anymarkup.serialize_file(struct, 'foo/bar.ini') # if a file doesn't have a format extension, pass it explicitly anymarkup.serialize_file(struct, 'foo/bar', format='json') # you can also pass encoding explicitly (utf-8 is default) anymarkup.serialize_file(struct, 'foo/bar', format='json', encoding='ascii')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file anymarkup-0.5.0.tar.gz
.
File metadata
- Download URL: anymarkup-0.5.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbe344a814b3b476f15a01a11c4a0ec075633e80585772ee96446776b50da855 |
|
MD5 | fe6bf4befe3a3dbf97f4f56f20d984b5 |
|
BLAKE2b-256 | 8fe6be981ceaf3404e2bb27e77723ae7203bde11c2d242a8e46f6ede6fb8ef51 |