subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
except ImportError: print("Installing httpx...") import subprocess subprocess.check_call([sys.executable, "-m", "pip", "install", "httpx", "-q"]) import httpx- Confidence
- 95% confidence
- Finding
- subprocess.check_call([sys.executable, "-m", "pip", "install", "httpx", "-q"])
