491 B
491 B
id | title | tags | created | ||
---|---|---|---|---|---|
cfr4 | Invoking_the_shell_in_Python |
|
Monday, April 29, 2024 |
Invoking the shell_in_Python
import subprocess
try:
process = subprocess.run(
["timew export"],
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
)
return json.loads(process.stdout)
except subprocess.CalledProcessError as e:
return e.stderr.strip()