Daemon application help functions.
Project description
daemon-application
Daemon application help functions.
Install
pip install daemon-application
Usage
Example for raw apis
import time
import threading
import signal
from daemon_application import daemon_start
stopflag = False
def main():
def on_exit(*args, **kwargs):
with open("backgroud.log", "a", encoding="utf-8") as fobj:
print("process got exit signal...", file=fobj)
print(args, file=fobj)
print(kwargs, file=fobj)
global stopflag
stopflag = True
signal.signal(signal.SIGTERM, on_exit)
signal.signal(signal.SIGINT, on_exit)
while not stopflag:
time.sleep(1)
print(time.time())
if __name__ == "__main__":
print("start background application...")
daemon_start(main, "background.pid", True)
Example for DaemonApplication
import time
from daemon_application import DaemonApplication
class HelloApplication(DaemonApplication):
def main(self):
while True:
print("hello")
time.sleep(1)
controller = HelloApplication().get_controller()
if __name__ == "__main__":
controller()
Release
v0.3.3 2020/11/22
- Fix show-config-filepaths.
v0.3.2 2020/11/22
- Add click deps in requirements.txt
v0.3.1 2020/11/22
- Add DaemonApplication.
v0.3.0 2020/11/21
- New wrapper.
v0.2.1 2018/04/18
- Old releases.
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 daemon-application-0.3.3.tar.gz
.
File metadata
- Download URL: daemon-application-0.3.3.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69293c75f4ab78ed9e2c3b177369be4cf9b7e41761e5e238a3f240ee9aba95b2 |
|
MD5 | ef41f552107fc9b9e8d31cd2579ef36a |
|
BLAKE2b-256 | dd655493880e3c577010684eaebde3bde9927f8f97cc0f2443531e5f5bef72b1 |