Metadata-Version: 1.1
Name: tractorbeam
Version: 0.1.3
Summary: Downloads S3 links in JSON to local files, and vice versa
Home-page: https://github.com/kislyuk/tractorbeam
Author: Andrey Kislyuk
Author-email: kislyuk@gmail.com
License: Apache Software License
Description: Tractor Beam: File I/O staging for JSON documents with Amazon S3 URLs
        =====================================================================
        
        Installation
        ------------
        ::
        
            pip install tractorbeam
        
        Synopsis
        --------
        
        Use ``aws configure`` to set up your AWS command line environment.
        
        .. code-block:: bash
        
            $ echo '{"input1": "s3://mybucket/path/to/myfile.bam"}' | tractor pull --strip-components 1
            {"input1": "file:///cwd/path/to/myfile.bam"}
            
            $ echo '{"input2": "file:///path/to/myfile.bam"}' | tractor push s3://mybucket/prefix/ --strip-components 0
            {"input2": "s3://mybucket/prefix/path/to/myfile.bam"}
        
        Authors
        -------
        * Andrey Kislyuk
        
        Links
        -----
        * `Project home page (GitHub) <https://github.com/kislyuk/tractorbeam>`_
        * `Documentation (Read the Docs) <https://tractorbeam.readthedocs.io/en/latest/>`_
        * `Package distribution (PyPI) <https://pypi.python.org/pypi/tractorbeam>`_
        * `Change log <https://github.com/kislyuk/tractorbeam/blob/master/Changes.rst>`_
        
        Bugs
        ~~~~
        Please report bugs, issues, feature requests, etc. on `GitHub <https://github.com/kislyuk/tractorbeam/issues>`_.
        
        License
        -------
        Licensed under the terms of the `Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_.
        
        .. image:: https://img.shields.io/travis/kislyuk/tractorbeam.svg
                :target: https://travis-ci.org/kislyuk/tractorbeam
        .. image:: https://codecov.io/github/kislyuk/tractorbeam/coverage.svg?branch=master
                :target: https://codecov.io/github/kislyuk/tractorbeam?branch=master
        .. image:: https://img.shields.io/pypi/v/tractorbeam.svg
                :target: https://pypi.python.org/pypi/tractorbeam
        .. image:: https://img.shields.io/pypi/l/tractorbeam.svg
                :target: https://pypi.python.org/pypi/tractorbeam
        .. image:: https://readthedocs.org/projects/tractorbeam/badge/?version=latest
                :target: https://tractorbeam.readthedocs.io/
        
Platform: MacOS X
Platform: Posix
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
