Python Process Run Control
Project description
This module provides convenient ways to guarantee a certain script state.
run.alone
Make sure only one instance of the program is running, this is done by acquiring an fcntl file lock on the current script:
>>> import run.alone
Caveats
There are a few things to keep in mind:
import run.alone once, it will exit your program if it gets imported twice
symlinked scripts will be resolved to the inode it has been linked to, this is a limitiation of using fcltn file locks
run.until
Run until a specified timespec, if the process runs longer, it will be killed:
>>> import run >>> run.until('23m42s') >>> ...
You can also choose to limit on the amount of CPU-time being consumed (default is wall clock time):
>>> run.until('42s', 'cpu') >>> ...
Acknowledgements
This module is dirived from the Sys::RunAlone and Sys::RunUntil perl modules written by Elizabeth Mattijsen.
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
File details
Details for the file run-0.2.tar.gz
.
File metadata
- Download URL: run-0.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a0a0273d6d41868d4656239e40fe22599e90148697b5ee7acc54d94b5eeddf4 |
|
MD5 | 9a805b91445314c7a5ccbe7a40c6414b |
|
BLAKE2b-256 | 76d76e741452317b9b46ae25515ccc273e3d163618a63c5d69c98786fe0d6e7b |