PINE64

Full Version: Calling an external command in Python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
(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.