Execute apps using subprocess ([in]visible) + regedit.exe path search
Project description
Execute apps using subprocess ([in]visible) + regedit.exe path search
pip install subprocreg
Tested against Windows 10 / Python 3.10 / Anaconda
Args:
file (str): The file to be opened by the application.
path (str): The path to the application executable (file path/or reg path)
exit_keys (str, optional): The key combination to exit the application. Defaults to "ctrl+alt+o".
add_options (tuple, optional): Additional options to pass to the application. Defaults to ().
headless (bool, optional): Whether to run the application in headless mode. Defaults to True.
**kwargs: Additional keyword arguments to pass to the subprocess.Popen() function.
Returns:
subprocess.Popen: A Popen object representing the executed application process.
Examples:
from subprocreg import execute_app
proc=execute_app(
file=r"F:\4 Promille - Oi the Meeting.mp3",
path=(r"HKEY_CLASSES_ROOT\Directory\shell\AddToPlaylistVLC", "Icon"),
exit_keys="ctrl+q",
add_options=(
"--input-repeat=0",
"-Idummy",
"--play-and-exit",
"--qt-minimal-view",
),
headless=True,
)
proc=execute_app(
file=r"C:\ProgramData\anaconda3\envs\dfdir\gracefully_kill.py",
path=r"C:\Windows\System32\notepad.exe",
exit_keys="ctrl+b",
add_options=(),
headless=False,
)
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
subprocreg-0.10.tar.gz
(4.1 kB
view hashes)
Built Distribution
Close
Hashes for subprocreg-0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0303d70ba9f949e1a4d4b8438ad61cb5f7f900196f8ac5eadec44228d975d662 |
|
MD5 | 9664fc3c00382c059bc46cb9218ef384 |
|
BLAKE2b-256 | 0c221e96fce791d5b3194e3e027ab73e6cafe0a8f324debb035abae41b17672c |