How can we interact with OS shell using Python ? I want to run windows cmd commands via python. How can it be achieved ?
7 Answers
The newer subprocess.check_output and similar commands are supposed to replace os.system. See this page for details. While I can't test this on Windows (because I don't have access to any Windows machines), the following should work:
from subprocess import check_output
check_output("dir C:", shell=True)
check_output returns a string of the output from your command. Alternatively, subprocess.call just runs the command and returns the status of the command (usually 0 if everything is okay).
Also note that, in python 3, that string output is now bytes output. If you want to change this into a string, you need something like
from subprocess import check_output
check_output("dir C:", shell=True).decode()
If necessary, you can tell it the kind of encoding your program outputs. The default is utf-8, which typically works fine, but other standard options are here.
Also note that @bluescorpion says in the comments that Windows 10 needs a trailing backslash, as in check_output("dir C:\\", shell=True). The double backslash is needed because \ is a special character in python, so it has to be escaped. (Also note that even prefixing the string with r doesn't help if \ is the very last character of the string — r"dir C:\" is a syntax error, though r"dir C:\ " is not.)
9 Comments
[0:-2] substring.[0:-2] for that purpose makes me nervous. If anyone takes that code to apply it in a non-Windows context, they'll certainly change the obvious dir C: to ls or whatever. But they could easily fail to realize that [0:-2] should be changed to [0:-1]. I'd recommend .rstrip() instead, which would work on any platform (unless you want to capture other trailing whitespace), and also makes the reason behind the string alteration clearer.ls / instead of dir C:.You would use the os module system method.
You just put in the string form of the command, the return value is the windows enrivonment variable COMSPEC
For example:
os.system('python') opens up the windows command prompt and runs the python interpreter

2 Comments
alt+prtscr to just get a screenshot of the active window. ;)Refactoring of @srini-beerge's answer which gets the output and the return code
import subprocess
def run_win_cmd(cmd):
result = []
process = subprocess.Popen(cmd,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
for line in process.stdout:
result.append(line)
errcode = process.returncode
for line in result:
print(line)
if errcode is not None:
raise Exception('cmd %s failed, see above for details', cmd)
Comments
import subprocess
result = []
win_cmd = 'ipconfig'(curr_user,filename,ip_address)
process = subprocess.Popen(win_cmd,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE )
for line in process.stdout:
print line
result.append(line)
errcode = process.returncode
for line in result:
print line
Comments
This worked for me, although you don't need to use import subprocess just in case you need to work with adb.
from tkinter import *
import os
# import subprocess
root = Tk()
root.title("Shutdown PC")
root.geometry("500x500")
def button():
os.system('timeout /T 10 /nobreak')
os.system('SHUTDOWN/s')
b = Button(root, text="SHUTDOWN PC", width=30, height=2, command = button)
b.pack()
root.mainloop()