Metadata-Version: 1.1
Name: baiji-serialization
Version: 1.0.0
Summary: Read and write common file formats to Amazon S3 and local files
Home-page: https://github.com/bodylabs/baiji-serialization
Author: Body Labs
Author-email: alex@bodylabs.com, paul.melnikow@bodylabs.com
License: Apache
Description: baiji-serialization
        ===================
        
        Read and write common file formats to Amazon S3 and local files.
        
        Features
        --------
        
        -  Reads and writes Pickle, JSON, and YAML
        -  Works without an S3 connection (with local files)
        -  Supports Python 2.7 and uses boto2
        -  Supports OS X, Linux, and Windows
        -  Tested and production-hardened
        
        Examples
        --------
        
        .. code:: py
        
            from baiji.serialization import json
            with open(filename, 'w') as f:
                json.dump(foo, f)
            with open(filename, 'r') as f:
                foo = json.load(foo, f)
        
        .. code:: py
        
            from baiji.serialization import json
            json.dump(filename)
            foo = json.load(filename)
        
        Development
        -----------
        
        .. code:: sh
        
            pip install -r requirements_dev.txt
            rake test
            rake lint
        
        Contribute
        ----------
        
        -  Issue Tracker: github.com/bodylabs/baiji-serialization/issues
        -  Source Code: github.com/bodylabs/baiji-serialization
        
        Pull requests welcome!
        
        Support
        -------
        
        If you are having issues, please let us know.
        
        License
        -------
        
        The project is licensed under the Apache license, version 2.0.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
