I have a code ,in which i invoke the local webserver in back ground ,then open URL and access the web page. below is my code. I am able to invoke and kill the local webserver in seperate python script,but when i club opening of browser and and subprocess , my like below ,then my script is not responding. Please guide me.
import subprocess import time subprocess.Popen(r'C:\WINDOWS\system32\cmd.exe /C "D:\372\pythonweb \mongoose-2.8.exe -root D:\New1\ >YourOutput.txt"') webbrowser.open("http://43.88.79.229:8080/index.html/") time.sleep(11) subprocess.Popen(r'C:\WINDOWS\system32\cmd.exe /c "taskkill /F /IM mongoose-2.8.exe >YourOutput1.txt"') # kill in back ground time.sleep(3) subprocess.Popen(r'C:\WINDOWS\system32\cmd.exe /C "D:\372\pythonweb \mongoose-2.8.exe -root D:\New1\ >YourOutput.txt"') webbrowser.open("http://43.88.79.229:8080/index.html/") time.sleep(11) subprocess.Popen(r'C:\WINDOWS\system32\cmd.exe /c "taskkill /F /IM mongoose-2.8.exe >YourOutput1.txt"') # kill in back ground time.sleep(3) subprocess.Popen(r'C:\WINDOWS\system32\cmd.exe /C "D:\372\pythonweb \mongoose-2.8.exe -root D:\New2\ >YourOutput.txt"') webbrowser.open("http://43.88.79.229:8080/index.html/") -- http://mail.python.org/mailman/listinfo/python-list