我想使用 Cron 每天每小时执行我的 python 脚本。因此我创建了一个如下所示的 cronjob:@hourly /home/pi/Desktop/repository/auslastung_download/auslastung.pycronjob 应执行以下脚本:from bs4 import BeautifulSoupfrom selenium.webdriver.firefox.options import Options as FirefoxOptionsfrom selenium import webdriverfrom datetime import datetime, datedef get_auslastung_lichtenberg(): try: url = "https://www.mcfit.com/de/fitnessstudios/studiosuche/studiodetails/studio/berlin-lichtenberg/" options = FirefoxOptions() options.add_argument("--headless") driver = webdriver.Firefox(options=options) driver.get(url) html_content = driver.page_source soup = BeautifulSoup(html_content, 'html.parser') elems = soup.find_all('div', {'class': 'sc-iJCRLp eDJvQP'}) #print(elems) auslastung = str(elems).split("<span>")[1] #print(auslastung) auslastung = auslastung[:auslastung.rfind('</span>')] #print(auslastung) auslastung = str(auslastung).split("Auslastung ")[1] #print(auslastung) auslastung = auslastung[:auslastung.rfind('%')] print(auslastung) now = datetime.now() current_time = now.strftime("%H:%M:%S") #print("Current Time =", current_time) today = date.today() print(today) ergebnis = {'date': today, 'time': current_time,'studio': "Berlin Lichtenberg", 'auslastung': auslastung} return ergebnis finally: try: driver.close() except: pass"""import jsonwith open('database.json', 'w') as f: json.dump(get_auslastung_lichtenberg(), f) """import csvwith open('/home/pi/Desktop/repository/auslastung_download/data.csv', mode='a') as file: fieldnames = ['date', 'time', 'studio', 'auslastung'] writer = csv.DictWriter(file, fieldnames=fieldnames) writer.writerow(get_auslastung_lichtenberg())通过执行时python3 auslastung.py一切正常并且脚本写入 data.csv 文件。
1 回答
慕标5832272
TA贡献1966条经验 获得超4个赞
首先,您必须确保脚本运行。
如果以交互方式运行,python3 auslastung.py
为什么在 cron 上以不同的方式调用 python 脚本。
您是否尝试过以交互方式运行/home/pi/Desktop/repository/auslastung_download/auslastung.py
?没有初始python3
,它会运行吗?
python3 auslastung.py
如果您的脚本在 crontab 上运行,您应该包含解释器和脚本的完整路径:
@hourly /paht/to/python3 /full/path/to/script.py
如果您使脚本直接运行而不需要指示解释器,那么 /full/path/to/script.py
您应该在 crontab 上包含脚本的完整路径:
@hourly /full/path/to/script.py
您可以包含一个 shebang:脚本的第一行指示使用哪个解释器来执行它。所以你的第一行应该是#!/path/to/your/interpreter
然后您必须确保该脚本具有执行权限chmod +x auslastung.py
。
添加回答
举报
0/150
提交
取消