fabrickit

Fabric API wrapper


Keywords
fabric, provision
License
Other
Install
pip install fabrickit==0.2.2

Documentation

Fabrickit

This is a simple fabric wrapper for emitting Exceptions, daemon start, process-safe file controls and etc.

You can download by pip install fabrickit

Usage

from fabrickit.core import run, execute, local, sudo, get, lock, unlock, put, get, firewall, sudoer, ulimit, tar, untar, daemon
from fabrickit.exceptions import RemoteExecutionException

# Useage is exactly the same but it emits RemoteExecuteException.
# execute(host) is not supported but execute(hosts) ( only plural)
# Other fabric.api can be used in a mixed way

# Exception Handling
#try : 
#    pass
#except RemoteExecutionException, e:
#    pass