基督山 发表于 2020-10-22 13:57

[Python]在python3里面调用idm下载出错,求解!

from subprocess import call
IDM = 'C:\Program Files (x86)\Internet Download Manager\IDMan.exe'
down_url = 'https://kbdevstorage1.blob.core.windows.net/asset-blobs/19342_en_1'
output_filename = 'test.jpg'
call()



idm部分配置如下

弹窗的错误网上搜不到结果 求解答{:301_999:}

rsnodame 发表于 2020-10-22 14:55

会不会是参数不对?

6) You may start downloads from command line using command line parameters
You may start IDM from the command line using the following parameters

idman /s
or idman /d URL

Parameters:
/d URL - downloads a file, eg.
IDMan.exe /d "http://www.internetdownloadmanager.com/path/File Name.zip"
/s - starts queue in scheduler
/p local_path - defines the local path where to save the file
/f local_file_name - defines the local file name to save the file
/q - IDM will exit after the successful downloading. This parameter works only for the first copy
/h - IDM will hang up your connection after the successful downloading
/n - turns on the silent mode when IDM doesn't ask any questions
/a - add a file, specified with /d, to download queue, but don't start downloading

Parameters /a, /h, /n, /q, /f local_file_name,/p local_path work only if you specified the file to download with /d URL

UniqueLegend 发表于 2020-10-22 15:07

本帖最后由 UniqueLegend 于 2020-10-22 15:57 编辑

参数传错了,漏了/p指定的保存路径;多了/a:/a - 添加使用 /d 指定的文件以下载队列,但不要开始下载。
下面的脚本我改好了,测试能正常下载
from subprocess import call
IDM = 'C:\Program Files (x86)\Internet Download Manager\IDMan.exe'
down_url = 'https://kbdevstorage1.blob.core.windows.net/asset-blobs/19342_en_1'
output_filename = 'test.jpg'
path = r'C:\Users\你的用户名\Downloads'
call()

基督山 发表于 2020-10-22 15:23

UniqueLegend 发表于 2020-10-22 15:07
参数传错了,漏了/p指定的保存路径;多了/a:/a - 添加使用 /d 指定的文件以下载队列,但不要开始下载。
...

这里报错是为啥呢?之前因为这里报错所以没有加/p和路径,。我把最后一个\去掉的话就不报错了,但是运行后idm还是弹出上面那个框

UniqueLegend 发表于 2020-10-22 15:53

本帖最后由 UniqueLegend 于 2020-10-22 16:02 编辑

基督山 发表于 2020-10-22 15:23
这里报错是为啥呢?之前因为这里报错所以没有加/p和路径,。我把最后一个\去掉的话就不报错了,但是运行 ...
python的老bug,原生字符串处理不了最后一个反斜杠“\”,会被解释器当做转义字符,去掉就行;
这报错我这没发生,可能你的IDM破解有问题,尝试论坛里另外找个版本测试,我是IDM6.32

基督山 发表于 2020-10-22 16:09

UniqueLegend 发表于 2020-10-22 15:53
python的老bug,原生字符串处理不了最后一个反斜杠“\”,会被解释器当做转义字符,去掉就行;
这报错我 ...

好的,谢谢了☺

rsnodame 发表于 2020-10-23 17:19

UniqueLegend 发表于 2020-10-22 15:53
python的老bug,原生字符串处理不了最后一个反斜杠“\”,会被解释器当做转义字符,去掉就行;
这报错我 ...

{:301_971:} 还有这种bug……学习了
页: [1]
查看完整版本: [Python]在python3里面调用idm下载出错,求解!