吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1789|回复: 6
收起左侧

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

[复制链接]
基督山 发表于 2020-10-22 13:57
[Python] 纯文本查看 复制代码
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, '/d',down_url, '/p','/f', output_filename, '/n', '/a'])


image.png

idm部分配置如下
image.png
弹窗的错误网上搜不到结果 求解答

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

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 [/p local_path] [/f local_file_name] [/q] [/h] [/n] [/a]

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 指定的文件以下载队列,但不要开始下载。
下面的脚本我改好了,测试能正常下载
[Python] 纯文本查看 复制代码
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([IDM, '/d', down_url, '/p', path, '/f', output_filename, '/n'])

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

这里报错是为啥呢?之前因为这里报错所以没有加/p和路径,。我把最后一个\去掉的话就不报错了,但是运行后idm还是弹出上面那个框 image.png
UniqueLegend 发表于 2020-10-22 15:53
本帖最后由 UniqueLegend 于 2020-10-22 16:02 编辑
基督山 发表于 2020-10-22 15:23
这里报错是为啥呢?之前因为这里报错所以没有加/p和路径,。我把最后一个\去掉的话就不报错了,但是运行 ...

python的老bug,原生字符串处理不了最后一个反斜杠“\”,会被解释器当做转义字符,去掉就行;
这报错我这没发生,可能你的IDM破解有问题,尝试论坛里另外找个版本测试,我是IDM6.32
idm测试.png

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
基督山 + 1 + 1 谢谢@Thanks!

查看全部评分

 楼主| 基督山 发表于 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,原生字符串处理不了最后一个反斜杠“\”,会被解释器当做转义字符,去掉就行;
这报错我 ...

还有这种bug……学习了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 12:00

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表