seria

Serialization for Humans


Keywords
yaml, json, yml, serialize, serialization, deserialize, deserialization, cli
License
MIT
Install
pip install seria==0.1.3

Documentation

Seria: Serialization for Humans

https://travis-ci.org/rtluckie/seria.svg?branch=master

Basic Usage

import seria
with open("tests/resources/good.xml", "rb") as f:
    s = seria.load(f)
    print s.dump('xml')
    print s.dump('json')
    print s.dump('yaml')

CLI Tool

Seria includes a useful command line tool.

cat tests/resources/good.xml | seria -y -
cat tests/resources/good.json | seria -j -
cat tests/resources/good.yaml | seria -x -
cat tests/resources/good.xml | seria -x - | seria -j - | seria -y -

Features

  • Support for (with a few limitations) json, yaml, xml

Installation

pip install seria