dengdengda 发表于 2021-7-30 17:17

pytthon调用IDM问题

想在python里面调用IDM,因为要添加referer进去,只能用接口
网上找了一下,IDM留有接口API,并且给了C++以及VB的使用方法(IDM官方文档):
http://www.internetdownloadmanager.com/support/idm_api.html

有文章讲到支持VB就可以到Python:(以下为引用)
(idmapi似乎可以从visualbasic访问,这很好,因为这意味着它支持IDispatch,因此支持Python。您想使用comtypes库。使用VB sample作为原型:
import comtypes.client as cc
import comtypes

referrer = ""
cookie = ""
postData = ""
user = ""
password = ""
cc.GetModule(["{PUT_UUID_HERE}",1,0])
# not sure about the syntax here, but cc.GetModule will tell you the name of the wrapper it generated
import comtypes.gen.IDManLib as IDMan
idm1 = cc.CreateObject("IDMan.CIDMLinkTransmitter", None, None, IDMan.ICIDMLinkTransmitter2)
idm1.SendLinkToIDM("http://www.internetdownloadmanager.com/idman401.exe",
referrer, cookie, postData, user, password, r"C:\\", "idman401.exe", 0)


我试着跑了一下,报错两个:
1、 无效的类字符串,,是   cc.GetModule(["{PUT_UUID_HERE}",1,0])这句引起的
删掉后报错
2、ModuleNotFoundError: No module named 'comtypes.gen.IDManLib'


求助内容:这个comtypes.gen.IDManLibmodule怎么安装呢?

网上关于这块的内容实在是太少太少了

三滑稽甲苯 发表于 2021-7-30 19:50

https://pypi.org/project/comtypes/
先安装这个库试试
页: [1]
查看完整版本: pytthon调用IDM问题