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 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 subprocreg-0.10.tar.gz.
File metadata
- Download URL: subprocreg-0.10.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1597e9513d1eb449e834cf4762d70bcff98f31a0e46718f7cdc827a5ab0594e1
|
|
| MD5 |
dd06710c8a4933741ff69d90a329c82d
|
|
| BLAKE2b-256 |
3e1a9a9559e069bdd322edb4bf8d6fe75be39117c515de315046aee9a7e13447
|
File details
Details for the file subprocreg-0.10-py3-none-any.whl.
File metadata
- Download URL: subprocreg-0.10-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0303d70ba9f949e1a4d4b8438ad61cb5f7f900196f8ac5eadec44228d975d662
|
|
| MD5 |
9664fc3c00382c059bc46cb9218ef384
|
|
| BLAKE2b-256 |
0c221e96fce791d5b3194e3e027ab73e6cafe0a8f324debb035abae41b17672c
|