Pidfile featuring stale detection and file-locking, can also be used as context-manager or decorator
Project description
PidFile class featuring:
stale detection
pidfile locking (fcntl)
chmod (default is 0o644)
chown
custom exceptions
Context Manager
PidFile can be used as a context manager:
from pid import PidFile with PidFile(): do_something()
Decorator
PidFile can also be used a a decorator:
from pid.decorator import pidfile @pidfile def main(): pass if __name__ == "__main__": main()
Exception Order
In default mode PidFile will try to acquire a file lock before anything else. This means that normally you get a PidFileAlreadyLockedError instead of the PidFileAlreadyRunningError when running a program twice.
If you just want to know if a program is already running its easiest to use just PidFileError since it will capture all possible PidFile exceptions.
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
Built Distribution
File details
Details for the file pid-1.0.7.tar.gz
.
File metadata
- Download URL: pid-1.0.7.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 703b014e9bf247f20d5553937f944c10e2621ce9f897e83328ab7bc8a94c3a12 |
|
MD5 | 25548f05415d0ebd5af682ad6d07fefa |
|
BLAKE2b-256 | 984c081552ee6c452cb3f5360d562505f7b11ae7ab0c8e01f98f231dd6a6b756 |
File details
Details for the file pid-1.0.7-py2.py3-none-any.whl
.
File metadata
- Download URL: pid-1.0.7-py2.py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87cee9eae50d6b99c3200a5384b44b783d370611142cb44bd145e1f99bdadb56 |
|
MD5 | b34c56d9132e1cbb4828fdb1a302005d |
|
BLAKE2b-256 | 72996a05542d3ebd45643e34189a0a6e21ed61be3834c324b6d09d0a6051598a |