Metadata-Version: 1.1
Name: seria
Version: 0.1.5
Summary: Serialization for Humans
Home-page: https://github.com/rtluckie/seria
Author: Ryan Luckie
Author-email: rtluckie@gmail.com
License: MIT
Description: Seria: Serialization for Humans
        ===============================
        .. image:: https://img.shields.io/pypi/v/seria.svg
            :target: https://pypi.python.org/pypi/seria
        
        .. image:: https://img.shields.io/pypi/dm/seria.svg
                :target: https://pypi.python.org/pypi/seria
        
        .. image:: https://travis-ci.org/rtluckie/seria.svg?branch=master
            :target: https://travis-ci.org/rtluckie/seria
        
        Basic Usage
        -----------
        
        .. code-block:: python
        
            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.
        
        .. code-block:: bash
            
            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
        ------------
        
        .. code-block:: bash
        
            pip install seria
Keywords: yaml json yaml yml serialize serialization deserialize deserialization cli
Platform: all
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration
