返回当前 Python 解释器路径,兼容 Windows(无 python3 命令)
()
| 41 | |
| 42 | |
| 43 | def python_bin() -> str: |
| 44 | """返回当前 Python 解释器路径,兼容 Windows(无 python3 命令)""" |
| 45 | return sys.executable or shutil.which('python3') or shutil.which('python') or 'python3' |
| 46 | |
| 47 | |
| 48 | def validate_url(url: str, allowed_schemes=('https',), allowed_domains=None) -> bool: |
no outgoing calls
no test coverage detected