Metadata-Version: 2.0
Name: unix
Version: 1.0
Summary: Manage Unix-like systems.
Home-page: UNKNOWN
Author: François Ménabé
Author-email: francois.menabe@gmail.com
License: MIT Licence
Download-URL: https://github.com/fmenabe/python-unix
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: Unix
Classifier: Topic :: System :: Systems Administration
Requires-Dist: paramiko

Package for managing Unix hosts
===============================

This module aims to manage Unix-likes operating systems. It manage both local or
remote host in the same way. Commands can be executed interactively or not, and
the result is a list of three elements:
    * the status of the command (boolean based on return code)
    * the standard output (stdout)
    * the error output (stderr)
For executed commands on localhost, the module used is ``subprocess`` and for
remotes hosts, the module used is ``paramiko``.

Code is available on Github (http://github.com/fmenabe/python-clg)

Releases notes
--------------
0.1
~~~
    * Initial version.


