sys.exit()不是查杀进程

时间:2016-10-24 08:58:37

标签: python python-2.7 selenium

我试图制作一个每小时做一次的程序,然后自行运行,然后自杀。

我遇到的问题是该程序并没有完全自杀。我发现当我使用系统监视器时,该过程并没有消失。

加班我只是越来越多的python2进程占用ram。

我在运行Arch Linux的64位机器上使用Python 2.7.12

这是我正在运行的代码

def GoToWebsite(username, password):
    chrome_options = webdriver.ChromeOptions()
    prefs = {"profile.default_content_setting_values.notifications": 2}
    chrome_options.add_experimental_option("prefs", prefs)
    chromeBrowser = webdriver.Chrome('/home/daniel/Dropbox/Code/BrowserDrivers/chromedriver',
                                     chrome_options=chrome_options)
    chromeBrowser.get('http://www.website.com')
    while True:
        try:
            picX, picY = pyautogui.locateCenterOnScreen(currentPythonDirectory + '/picture.png')
            break
        except:
            pass
    pyautogui.click(picX, picY)
    time.sleep(3)
    url = chromeBrowser.command_executor._url
    session_id = chromeBrowser.session_id 
    return url, session_id

websiteUrl, websiteSessionId = GoToWebsite("username", "password")
#Do Stuff
originalStartTime = time.time()
currentPythonDirectory = os.path.dirname(os.path.realpath(__file__))

while True:
    if (time.time() - originalStartTime) >= 3:  # 3600:
        chromeDriver = webdriver.Remote(command_executor=websiteUrl, desired_capabilities={})
        chromeDriver.session_id = websiteSessionId
        chromeDriver.quit()
        try:
            chromeDriver.close()
        except:
            pass
        os.system("python2 " + currentPythonDirectory + "/PythonScript.py")
        time.sleep(1)
        sys.exit(1)
        break
    #Other Stuff

2 个答案:

答案 0 :(得分:0)

据我所知,子进程将在启动后完成返回。这是一个阻塞操作,因为python将在执行任何其他代码之前等待您启动的子进程完成。在os.system()之后添加print语句将显示程序永远不会到达sys.exit(1)

答案 1 :(得分:0)

在尝试制作更好的crontabs版本时,我遇到了完全相同的问题。我修改了我的代码,以便您了解该方法。使用此方法,您不会遇到任何最大递归问题。

import os, commands, regex, subprocess
from subprocess import call

allActivePythonProcesses = os.popen('pgrep -lf python').read()
thisIsYourPythonFileProcess = find('\d{7} python myRepeatingFile.py', allActivePythonProcesses )
if thisIsYourPythonFileProcess:
    # Store the Process ID
    convPID = find('\d{7}', thisIsYourPythonFileProcess)
    print "Your Python File is running at PID: " + convPID
else:
    print "Process Controller: Your Python file is not running"
    try:
        print "...Calling your Python file"
        subprocess.check_call('python myRepeatingFile.py', shell=True)

    except subprocess.CalledProcessError as e:
        print "Process Call Error :" + e

如果您希望它全天候执行,只需将其放入while True循环即可。导入时间模块,如果你想限制速度。