我有一个每天由 cron 运行的小脚本,过去 3 个月一直在工作。
9 月 30 日,它停止工作并出现以下错误:
文件“NumberChecker.py”,第 32 行,在 start_server os.startfile(startfile[0]) AttributeError: 'module' object has no attribute 'startfile'
这是该位的代码:
def start_server(xml):
startfile = xml.xpath('/config/files/startfile/text()')
try:
driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')
except:
print('no server')
server_status = 'down'
os.startfile(startfile[0])
while server_status == 'down':
try :
driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')
server_status = 'running'
except :
pass
它只是通过请求 google 来测试 selenium 服务器是否启动,如果没有则调用启动它的 bash 脚本。
为什么 os.startfile 会突然停止工作?
我在命令行尝试过这个:
import os
os.startfile(home/adam/file/start_server.sh)
我得到
文件“< stdin >”,第 1 行,在 AttributeError 中:'module' 对象没有属性 'startfile'
我只是无法弄清楚为什么它刚刚停止工作?
它是虚拟环境中的python 3.3,操作系统是ubuntu server 12.04