eolas/zk/Invoking_the_shell_in_Python.md

28 lines
491 B
Markdown
Raw Normal View History

2024-04-29 17:50:04 +01:00
---
id: cfr4
title: Invoking_the_shell_in_Python
tags: [python, shell]
created: Monday, April 29, 2024
---
# Invoking the shell_in_Python
```py
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()
```