Metadata-Version: 2.1
Name: jobio
Version: 0.0.0a8
Summary: A bootstrap package to handle input and output data for batch processes
Home-page: https://github.com/rasmunk/jobio
Author: Rasmus Munk
Author-email: munk1@live.dk
License: MIT
Keywords: Job,IO,S3,Batch
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: boto3
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Provides-Extra: test
Requires-Dist: black ; extra == 'test'
Requires-Dist: flake8 ; extra == 'test'

.. image:: https://travis-ci.com/rasmunk/jobio.svg?branch=master
    :target: https://travis-ci.com/rasmunk/jobio

=====
jobio
=====

jobio is used for executing processes on a Unix-like environment.
The execution runtime at the moment is just a simple shell execution of the job command and the optional arguments.

In addition, the package supports the staging of S3 buckets on the executing node before the process scheduled.
Furthermore, upon a successful execution, the `jobio` package supports the automatic export of persistent results
to the same S3 bucket.

To distinquish between what is the staging inputs in the bucket and the subsequent results,
jobio sets default `bucket_input_prefix='input'` and `bucket_output_prefix='output'` to divide these two sets in the bucket.

Very much in an **Alpha** stage.
Not ready for anything!

------------
Installation
------------

Installation from pypi::

    pip install jobio


Installation from local git repository::

    cd jobio
    pip install .


