/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
scripts/run_in_subdirectory.py
114 строк
4 KB
Lukas Masuch
Activate more ruff preview rules (#13606)
16 янв 2026, 21:10
Не верифицирован
16 янв 2026, 21:10
8959337
Код
Авторство
О чём код?
#!/usr/bin/env python # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from __future__ import annotations import subprocess import sys import textwrap from pathlib import Path if __name__ not in {"__main__", "__mp_main__"}: raise SystemExit( "This file is intended to be executed as an executable program. You cannot use " "it as a module.To run this script, run the ./{__file__} command" ) def is_relative_to(path: Path, *other: str) -> bool: """Return True if the path is relative to another path or False.""" return path.is_relative_to(*other) def display_usage() -> None: prog = Path(__file__).name print( textwrap.dedent( f"""\ usage: {prog} [-h] SUBDIRECTORY ARGS [ARGS ...] Runs the program in a subdirectory and fix paths in arguments. example: When this program is executed with the following command: {prog} frontend/ yarn eslint frontend/src/index.ts Then the command will be executed: yarn eslint src/index.ts and the current working directory will be set to frontend/ positional arguments: SUBDIRECTORY subdirectory within which the subprocess will be executed ARGS sequence of program arguments optional arguments: -h, --help show this help message and exit\ """ ) ) def parse_args() -> tuple[str, list[str]]: if len(sys.argv) == 2 and sys.argv[1] in {"-h", "--help"}: display_usage() sys.exit(0) if len(sys.argv) < 3: print("Missing arguments") display_usage() sys.exit(1) print(sys.argv) return sys.argv[1], sys.argv[2:] def fix_arg(subdirectory: str, arg: str) -> str: arg_path = Path(arg) if not (arg_path.exists() and is_relative_to(arg_path, subdirectory)): return arg return str(arg_path.relative_to(subdirectory)) def try_as_shell(fixed_args: list[str], subdirectory: str) -> None: # Windows doesn't know how to run "yarn" using the CreateProcess # WINAPI because it's looking for an executable, and yarn is a node script. # Yarn happens to be the only thing currently run with this patching script, # so add a fall-back which tries to run the requested command in a shell # if directly calling the process doesn't work. print("Direct call failed, trying as shell command:") shell_cmd = " ".join(fixed_args) print(shell_cmd) try: subprocess.run(shell_cmd, cwd=subdirectory, check=True, shell=True) except subprocess.CalledProcessError as ex: sys.exit(ex.returncode) def main() -> None: subdirectory, subprocess_args = parse_args() fixed_args = [fix_arg(subdirectory, arg) for arg in subprocess_args] try: subprocess.run(fixed_args, cwd=subdirectory, check=True) except subprocess.CalledProcessError as ex: sys.exit(ex.returncode) except FileNotFoundError: if "win32" in sys.platform: try_as_shell(fixed_args, subdirectory) else: sys.exit(1) main()