The ProcessGuard library provides a set of functions to manage, monitor, and guard processes on your system.
To install the ProcessGuard library, you can use pip
:
pip install ProcessGuard
Import the functions you need from ProcessGuard
in your Python script:
from ProcessGuard import *
# Use the functions from the library
# ...
-
Check if Notepad is running:
if is_running("notepad.exe"): print("Notepad is running.") else: print("Notepad is not running.")
-
Start a process with arguments (Notepad with a text file):
start_with_arguments("notepad.exe", ["path/to/textfile.txt"])
-
Monitor a process:
monitored_process = "chrome.exe" monitor_process(monitored_process, interval=10)
-
"Run Always" for a process:
process_name = "notepad.exe" process_path = r"C:\Windows\System32\notepad.exe" guard(process_name, process_path, True, 0.1)
is_running(process_name)
: Check if a process is currently running.start(process_path)
: Start a process.terminate(process_name)
: Terminate a process.guard(process_name, process_path, closetaskmanager, interval)
: Guard and monitor a process.list_running()
: List all currently running processes.get_memory_usage(process_name)
: Get memory usage of a process.get_cpu_usage(process_name)
: Get CPU usage of a process.kill_all(process_name)
: Terminate all instances of a process.restart(process_name, process_path)
: Restart a process.count_running()
: Count the number of running processes.get_process(process_name)
: Get details of a specific process.monitor_process(process_name, interval)
: Monitor the status of a process.start_with_arguments(process_path, arguments)
: Start a process with arguments.
For more examples, check the examples
directory in this repository.
Contributions to the ProcessGuard library are welcome! Feel free to fork the repository and submit pull requests.
This project is licensed under the MIT License.