gpt4 book ai didi

python - request.urlretrieve 在 PythonAnywhere 中作为计划任务运行时失败

转载 作者:行者123 更新时间:2023-12-01 09:27:37 29 4
gpt4 key购买 nike

我有一个 .py 脚本,当我在控制台中运行它时它可以工作,但当我将它安排为自动任务时似乎会失败。该脚本使用 urllib.request (我确保将 Hashbang 设置为运行支持该包的 Python 3.6)来从特定 URL 命中并下载文件。当我手动运行它时再次没有问题,但是当它运行时计划任务我收到此错误:

Traceback (most recent call last):   File
"/home/laiAdmin/Scripts/FullAutoSubStats.py", line 32, in <module>
urllib.request.urlretrieve(URL, dlFileName) File "/usr/lib/python3.6/urllib/request.py", line 258, in urlretrieve
tfp = open(filename, 'wb') FileNotFoundError: [Errno 2] No such file or directory:
'/home/laiAdmin/Data_Files/Downloads/FWdirect-Daily-Stats-Parser-autoDl-2018-05-08.json'

2018-05-08 16:48:11 -- Completed task, took 6.00 seconds, return code
was 1.

它指向的代码片段如下(出于安全目的隐藏完整的 URL):

#Get timestamp and PWD
cwd = os.getcwd()
now = DT.datetime.utcnow()-DT.timedelta(hours=6)
todayStr = DT.datetime.strftime(now,"%Y-%m-%d")
nowStr = DT.datetime.strftime(now,"%m/%d/%Y %H:%M:%S")

#Request to download a new json file:
rootdir = cwd+'/Data_Files/Downloads/'
URL = "https://files.mailparser.io/d/*****"
#(hiding the full URL here for security purposes)
fn = "FWdirect-Daily-Stats-Parser-autoDl-"+todayStr+".json"
dlFileName = rootdir+fn
urllib.request.urlretrieve(URL, dlFileName)

最后一行是回溯发生的地方。请帮助我理解为什么当我在控制台中点击运行时它会运行,但当我将其安排为任务时会失败。

最佳答案

非常愚蠢,但我刚刚想通了。事实证明,当计划任务运行时,它从导致问题的不同目录运行。

感谢 pythonanywhere 上的 giles 给我提供的消息:https://www.pythonanywhere.com/forums/topic/12790/#id_post_49647

需要 cd 到任务计划程序中的正确目录:

cd/home/laiAdmin/something/something; python3.6/home/laiAdmin/myscript.py

关于python - request.urlretrieve 在 PythonAnywhere 中作为计划任务运行时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50238832/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com