
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
AM3 = Application Manager written with python 3
Python3 is required, which should be available on most of the modern Linux distributions.
Install am3 with this command:
pip install am3
Then you can use it with am
or am3
.
Retrieve and display information about running applications, including their name, ID, and other details.
am3 ls
Launch an application by specifying a command and parameters:
am --start "ping" --params "127.0.0.1 -c 5"
By default, am3 will automatically restart the application if it exits unexpectedly. Each application is assigned a unique ID, which can be used to manage or interact with the application.
Use the -s
option to specify the main script or file. If the script is a Python file, the Python interpreter is
automatically invoked. Similarly, shell scripts are executed using Bash. This behavior is defined in the
guess_interpreter
function.
am -s example/counter.py
If needed, you can explicitly define the interpreter using the -i
option:
am -s example/counter.py -i python3
If you’re running the executable in the current directory, use:
./am -s example/counter.py -i python3
Alternatively, you can use symbolic links for starting executables:
am -s example/counter.py
Terminate a running application by using its ID:
am stop 0
You can save the configuration for reuse with the -g
option:
am -s example/counter.py -i python3 -g example/counter_config.json
To reuse a previously saved configuration file, use:
am -c example/counter_config.json
Define specific keywords that trigger automatic restarts if they appear in the application output:
am -s example/counter.py -i python3 --restart_keyword "Exception XXX" "Exception YYY" -g example/counter_config.json
Specify the working directory for the application:
am -s counter.py -i python3 --restart_keyword "Exception XXX" "Exception YYY" -d "/home/nate/gitRepo/am3/example/" -g example/counter_config.json
Define a delay (in seconds) before restarting the application:
am -s counter.py -i python3 --restart_keyword "Exception XXX" "Exception YYY" -d "/home/nate/gitRepo/am3/example/" -t 3 -g example/counter_config.json
Specify regular expressions as restart keywords for more flexible matching:
am -s counter.py -i python3 --restart_keyword "Exception XXX" --restart_keyword "Exception YYY" \
--restart_keyword_regex "| 0.00 |" --restart_keyword_regex "2\\d\\.\\d\\d KB/s" \
-d "/home/nate/gitRepo/am3/example/" -t 3 -g example/counter_config.json
Set a delay for how often to check if the application should restart:
am -s counter.py -i python3 --restart_check_delay 0 --restart_keyword "Exception XXX" \
--restart_keyword "Exception YYY" --restart_keyword_regex "| 0.00 |" \
--restart_keyword_regex "2\\d\\.\\d\\d KB/s" \
-d "/home/nate/gitRepo/am3/example/" -t 3 -g example/counter_config.json
Run a pre-check script to validate the environment before executing the main application. The script's check
function
is automatically called every second until it returns True
.
am -s counter.py -i python3 --restart_check_delay 0 --restart_keyword "Exception XXX" \
--restart_keyword "Exception YYY" --restart_keyword_regex "| 0.00 |" \
--restart_keyword_regex "2\\d\\.\\d\\d KB/s" -d "/home/nate/gitRepo/am3/example/" \
-t 3 -b "example/counter_before_execute.py" -g example/counter_config.json
You can specify a custom name for the application:
am -s counter.py -i python3 --restart_check_delay 0 --restart_keyword "Exception XXX" \
--restart_keyword "Exception YYY" --restart_keyword_regex "| 0.00 |" \
--restart_keyword_regex "2\\d\\.\\d\\d KB/s" -d "/home/nate/gitRepo/am3/example/" \
-t 3 -b "example/counter_before_execute.py" --name counter -g example/counter_config.json
Thanks for the great IDE Pycharm from Jetbrains.
FAQs
Application Manager written with python 3
We found that am3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.