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