Runs Python application in a fault-tolerant environment, continually rebooting after unexpected exceptions
Project description
app_manager
Runs Python application in a fault-tolerant environment, continually rebooting after unexpected exceptions.
- Uses Python3 standard library packages only
- app_manager.py contains AppManager class
examples
installation
pip install app_manager
running your app in the AppManager is simple
import ApplicationClass
from app_manager import AppManager
app = ApplicationClass()
AppManager(app.run, run_limit = None) # set run_limit to positive integer to run application at most n times
''' Exceptions will be printed to the console '''
alternatively, you can pass in your app's logger so that exceptions appear in your log output
from application_package import ApplicationClass, logger
from app_manager import AppManager
app = ApplicationClass()
AppManager(app.run, logger = logger)
''' Exceptions will be printed to the console and logged with the supplied logger'''
each instance of AppManager runs in its own process, so multiple application components can be launched successively
from application_package import AppMainClass, main_logger
from background_package import BackgroundAppClass, bg_logger
from app_manager import AppManager
app = AppMainClass()
comp = BackgroundAppClass()
AppManager(app.run, logger = main_logger)
AppManager(comp.run, logger = bg_logger)
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
app_manager-0.0.0.2.tar.gz
(7.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file app_manager-0.0.0.2.tar.gz.
File metadata
- Download URL: app_manager-0.0.0.2.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33cfd184a908c00dc599d39a81ad075b43a7ad9a61b06c99f2a0d3b3b751107f
|
|
| MD5 |
891c455f6ff71b78cc38637c368b79ae
|
|
| BLAKE2b-256 |
865edeed87ea7b7344a68f9e8e92f18e7f8d6556bbae98f4f65812a895826538
|
File details
Details for the file app_manager-0.0.0.2-py3-none-any.whl.
File metadata
- Download URL: app_manager-0.0.0.2-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1bccb5aab9e7329db487dcc7fa67df1f9d59e66d0472c0aff01eff9044fae1c
|
|
| MD5 |
f93a15254a39caa4e03bfab096d8bc63
|
|
| BLAKE2b-256 |
f3b7f494f8e37c9a2cfba7cd9b2087d38a39296ef27ae8743f444e6a0a88baae
|