如何解决cron执行和python脚本的终端执行之间的差异?

时间:2019-07-08 17:07:06

标签: python linux cron archlinux

我正在尝试获取一个简单的python脚本,以使用cron在arch linux上定期执行,但是当我在cron中运行它时,其行为与为何在终端中运行时有所不同。

该脚本从NASA当天的图片中下载壁纸,并使用“ feh”程序将其设为我的壁纸。当我在终端中运行脚本时,一切都很好,但是当我在cron中运行它时,它会下载文件,但不会将其作为墙纸。

任何帮助将不胜感激。

#!/usr/bin/env python

import time
import os
import requests
import tempfile
from bs4 import BeautifulSoup

WALLPAPER_LOCATION = "/home/user/.wallpaper.jpg"


def main():
    if os.path.exists(WALLPAPER_LOCATION):
        os.remove(WALLPAPER_LOCATION)
    website = "https://apod.nasa.gov/apod/astropix.html"
    html_txt = getHTML(website)
    img_url = get_image_URL(html_txt)
    downloadFile(img_url, WALLPAPER_LOCATION)
    os.system("/usr/bin/feh --bg-scale " + WALLPAPER_LOCATION)

def downloadFile(url, filepath):
    with open(filepath, 'wb') as handle:
        response = requests.get(url, stream=True)
        if not response.ok:
            print(response)
        for block in response.iter_content(1024):
            if not block:
                break
            handle.write(block)

def getHTML(url):
    html_txt = ""
    temp_html_file = tempfile.NamedTemporaryFile()
    downloadFile(url, temp_html_file.name)

    with open(temp_html_file.name, "r") as reader:
        html_txt = reader.read()
    return html_txt

def get_image_URL(html_doc):
    base_url = "https://apod.nasa.gov/apod/"

    soup = BeautifulSoup(html_doc, "html.parser")
    return base_url + soup.findAll('img')[0]["src"]



if __name__== "__main__":
  main()

1 个答案:

答案 0 :(得分:0)

@thatotherguy是正确的。问题是cron不知道要使用什么显示器,所以feh可以设置墙纸。 @thatotherguy提供的链接中提到了cron中运行的X11程序的问题,该问题也可以在arch wiki中找到。

我将env DISPLAY=:0添加到了我的Cron工作的开始,现在一切正常。