Metadata-Version: 2.0
Name: soldier
Version: 0.0.2
Summary: Subprocess with Style
Home-page: https://pypi.python.org/pypi/soldier
Author: Yash Mehrotra
Author-email: yashmehrotra95@gmail.com
License: Apache 2.0
Platform: UNKNOWN

Soldier: Subprocess with Style
==============================

.. image:: https://img.shields.io/badge/license-APACHE2-blue.svg?style=flat-square
    :target: https://github.com/yashmehrotra/soldier/blob/master/LICENSE

Soldier is an Apache2 licensed library designed for executing system processes with ease.

It is written on top of subprocess and has a much user-friendly and pythonic interface.

And the best part - it is very easy to get started

Installation 
------------
.. code-block:: sh

    $ pip install soldier

Getting Started
---------------
.. code-block:: python

    >>> import soldier

    >>> print soldier.run('pwd').output
    /home/python/

    >>> firefox_process = soldier.run('firefox', background=True)
    >>> firefox_process.pid
    20749

    >>> job = soldier.run('myjob',timeout=30)

Documenation
------------

The documentation is available at <link>


