diff --git a/launch.py b/launch.py new file mode 100644 index 0000000..93c0910 --- /dev/null +++ b/launch.py @@ -0,0 +1,6 @@ +import subprocess as sp +import os + +folder_path = __file__.replace("\\", "/")[:-10] +os.chdir(folder_path) +sp.call(f'python "{folder_path}/src/main.py"')