-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_script.py
64 lines (48 loc) · 1.41 KB
/
run_script.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Place this script within a directory in your PYTHON_PATH
And then import it in scripts in your PATH.
Your executable script (test) should look something like this:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/bin/env python
from run_script import run_script
run_script("test.py")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"""
import inspect
import os
import platform
import subprocess
import sys
from pathlib import Path
def run_script(
script_name: str,
src_dir: str = "",
venv_dir: str = "venv",
level: int = 0,
) -> None:
"""
Run the python script after activate its virtual environment.
The virtual environment directory (`venv_dir`) is relative to the script_path.
Assumes the following structure:
<root>
|
|-- <src>
| |-- <script_name>
|
|-- venv
| |-- bin
| | |-- python
"""
root_path = Path(inspect.getfile(inspect.currentframe())).parents[level]
python_path = root_path / venv_dir / "bin" / "python"
if src_dir:
script_path = root_path / src_dir / script_name
else:
script_path = root_path / script_name
args = " ".join(sys.argv[1:])
command = f"{python_path} {script_path} {args}"
os.environ["ENVPATH"] = str(root_path / ".env")
try:
_ = subprocess.run(command, shell=True, check=True)
except subprocess.CalledProcessError as _: # err:
pass