A remote process launcher.
Project description
yassh
Yassh is a python library used to run asynchronous, dependent remote and local tasks.
Usage
import logging
from yassh import Reactor, RemoteRun, RemoteConfiguration, LocalRun
logging.basicConfig(level=logging.DEBUG)
# Create a remote ; only host parameter is mandatory
remote = RemoteConfiguration(host='localhost', username='user')
# ssh_config(5) options can be set in RemoteConfiguration object
remote.set('Compression', 'yes')
remote.set('CompressionLevel', '9')
r = Reactor()
c1 = RemoteRun(r, remote, 'sleep 5')
c2 = LocalRun(r, 'echo ok')
c3 = RemoteRun(r, remote, 'echo "finished" && sleep 1')
def start_c2(run):
# Start cmd2 when cmd1 complete successfully
if run.result == 0:
c2.start()
c1.register_exit_monitor(start_c2)
def start_c3(run):
# Start cmd3 when cmd2 complete
c3.start()
c2.register_monitor(u'ok', start_c3)
def on_c3_finished(run):
# Print dummy message when c3 is near terminaison
print('c3 almost finished')
c3.register_monitor(u'finished', on_c3_finished)
# Start first task
c1.start()
# Infinite
timeout = -1
while r.run(timeout) > 0:
pass
Installation
To install latest release:
pip install yassh
To install latest code:
pip install git+https://github.com/enyx-opensource/yassh.git
Testing
Run from project root:
behave
License
MIT License (see LICENSE)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
yassh-2.0.3.tar.gz
(6.1 kB
view details)
Built Distribution
File details
Details for the file yassh-2.0.3.tar.gz
.
File metadata
- Download URL: yassh-2.0.3.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5e2979dfef09a713ac9c25ca41b8f96a4842360859d1b374213f7739f4b7238 |
|
MD5 | 8b8220fecd1127f01f70e952b24dec1c |
|
BLAKE2b-256 | 22e7a4bede1846edf63bfe0d3373109390346f1421b88a94fdec11f868b71db9 |
File details
Details for the file yassh-2.0.3-py2.py3-none-any.whl
.
File metadata
- Download URL: yassh-2.0.3-py2.py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbcf11973bc15499af6bd85afacc36fb261fd1dd9bc0357d1b88fe6c8c2abbfb |
|
MD5 | b45f78f792f59233e21b2b48a6ef89a5 |
|
BLAKE2b-256 | f59aff72d7fbbe20c614fb8ff2e8a28dfd4f2b4fc487ba5d037b6db84781b703 |