subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
except ImportError: print("Installing reportlab...") import subprocess subprocess.check_call(['pip', 'install', 'reportlab', '--break-system-packages', '-q']) from reportlab.lib.pagesizes import letter from reportlab.lib.units import inch from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle- Confidence
- 98% confidence
- Finding
- subprocess.check_call(['pip', 'install', 'reportlab', '--break-system-packages', '-q'])
