How to run batch file using python script? [duplicate] - python

This question already has answers here:
Run a .bat file using python code
(9 answers)
Closed 6 years ago.
Is this possible? I yes, can anyone help me how to do it. I don't know how to use subprocess and Popen() to run my sort.bat file.

You can use os.system:
import os
os.system('Path to your .bat file')

Related

Is it possible to use python code to open another application? [duplicate]

This question already has answers here:
How do I execute a program or call a system command?
(65 answers)
Closed 12 months ago.
i am wondering if it is possible to open an app with python. I did some googling but i did not find anything that works. I tried:
import os
os.system("Settings")
and
import subprocess
subprocess.Popen("C:\Program Files (x86)\Steam\steam.exe")
but these do not work and i cant find anything else
Thanks in advance!
Your code didn't work because the format of the path is wrong
import subprocess
subprocess.Popen("C:\\Program Files (x86)\\Steam\\steam.exe")
or
import subprocess
subprocess.Popen(r"C:\Program Files (x86)\Steam\steam.exe")

Acess denied while trying to open file with python [duplicate]

This question already has answers here:
How can I make one python file run another? [duplicate]
(8 answers)
Closed 4 years ago.
I'm in this 1.py file, and I would like to execute the main.py at some point. I tried using:
import os
os.chdir("/storage/emulated/0/qpython/projects3/seila")
os.system("/storage/emulated/0/qpython/projects3/seila/main.py")
But the result indicated that the access was denied.
How can I solve this?
I Just user the "import" and It worked.
Thank you all for the Help.

Run python-script from CMD - windows [duplicate]

This question already has answers here:
How to execute Python scripts in Windows?
(9 answers)
Closed 6 years ago.
I want to run my python script without the python keyword at the beginning.
Example :
I don't want python script.py.
I want script.py
The problem is that when I run it how I want the script opens in a text editor, and it doesn't run in the console...
Why?
I just had to set the default opening of the file with python.exe,
By default it was with VS Code.

Linux command line instructions from python [duplicate]

This question already has answers here:
How do I execute a program or call a system command?
(65 answers)
Closed 7 years ago.
Is there a method for issuing command line instructions directly from the python shell?
You can use os.system -
import os
os.system('<command line instruction>')

how to run my own external command in python script [duplicate]

This question already has answers here:
How do I execute a program or call a system command?
(65 answers)
Run a linux system command as a superuser, using a python script
(6 answers)
Closed 9 years ago.
I wanna to run my own non-system external commands in python.
Such as "sudo insteon on 23". Subprocess and os.system are designed for system calls.
Does anybody know how to do it?
Thanks
You can use subprocess.Popen for this:
import shlex
import subprocess
proc = subprocess.Popen(shlex.split('sudo insteon on 23'))
proc.communicate()

Categories

Resources