01-30-2017, 09:40 AM
(01-30-2017, 09:31 AM)douglassirkshaun Wrote: How can I call an external command (as if I'd typed it at the Unix shell or Windows command prompt) from within a Python script?
The sys module and the os module will be helpful for you.
from sys import *
from os import *
or, just import the components you need.
http://www.python-course.eu/sys_module.php
http://www.python-course.eu/os_module_shell.php
Read the two links posted above. Specifically the os module will allow you to make shell commands from python scripts. The sys module will help you get input args (argv) and to get information about the system into your python scripts.
marcushh777
please join us for a chat @ irc.pine64.xyz:6667 or ssl irc.pine64.xyz:6697
( I regret that I am not able to respond to personal messages; let's meet on irc! )
please join us for a chat @ irc.pine64.xyz:6667 or ssl irc.pine64.xyz:6697
( I regret that I am not able to respond to personal messages; let's meet on irc! )