Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To initiate a Python script using sudo within another Python script, you can use the subprocess module. Here’s an example code:

import subprocess

# initiate the script using sudo
command = ['sudo', 'python', '/path/to/script.py']
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, error = process.communicate()

# check the output and error message
if error:
    print(error.decode())
else:
    print(output.decode())

To terminate the Python script initiated using sudo, you can use the pidof command and kill the process. Here’s an example code:

import os

# kill the process using pidof
command = 'sudo pidof python /path/to/script.py | xargs sudo kill -9'
os.system(command)

Note that killing a process using -9 option is a forceful shutdown which can cause data loss. It is recommended to use a more graceful method to terminate a process wherever possible.