I need to run .bat (or .vbs) many times (in a loop in .py) and a "black window" do the process more slowly. How can I avoid that?
Asked
Active
Viewed 73 times
0
-
This is probably a Superuser question Python does not control the .bat file it just executes it if you provide the code – PyNEwbie Dec 13 '15 at 20:13
-
4If you're using `subprocess`, one of these: http://stackoverflow.com/q/7006238/, http://stackoverflow.com/q/1016384/. – senshin Dec 13 '15 at 20:17
-
@senshin thank you, it works – Saratery Dec 13 '15 at 20:39