Search Results

19
votes

How to call external command in Python

I'd recommend using the subprocess module instead of os.system because it does shell escaping for you and is therefore much safer: …