gpt4 book ai didi

python - 类型错误 : 'module' object is not callable API

转载 作者:太空宇宙 更新时间:2023-11-03 19:09:33 25 4
gpt4 key购买 nike

Possible Duplicate:
Unable to instantiate a class defined in a subdirectory

我有:

测试.py

#!/usr/bin/python
# -*- coding: utf-8 -*-

import WykopLinks
import WykopAPI


API = WykopAPI.WykopAPI('apikey')
Links = WykopLinks.WykopLinks(API)
List = Links.getPromoted();
for Znalezisko in List:
print Znalezisko.id
print Znalezisko.title

我尝试更改 importfrom WykopLinks import WykopLinks或将名称更改为其他名称,但这没有帮助。

我也在尝试other-name-formodule.WykopLinks(API)

错误:

Links = WykopLinks(API)
TypeError: 'module' object is not callable

我检查了此处描述的其他问题,但没有一个有帮助。

最佳答案

这段代码

Links = WykopLinks(API)
TypeError: 'module' object is not callable

失败,正如错误消息所描述的那样:WykopLinks 是一个模块,不可调用。

大概您应该调用 WykopLinks 模块中定义的某些函数或类。但由于我找不到该模块的任何文档,并且您没有提供任何信息,因此我无法告诉您代码应该是什么样子。

关于python - 类型错误 : 'module' object is not callable API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13479709/

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