gpt4 book ai didi

python - 我的 python api 包装类中的字符串错误

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:31 24 4
gpt4 key购买 nike

我正在为几个不同的网络服务编写一个 API 包装器。

我有一个包含文章 url 的方法,我想使用 alchemyapi 从中提取文本。

def extractText(self):
#All Extract Text Methods ---------------------------------------------------------//
#Extract page text from a web URL (ignoring navigation links, ads, etc.).
if self.alchemyapi == True:
self.full_text = self.alchemyObj.URLGetText(self.article_link)

在 python 包装器中转到以下代码

def URLGetText(self, url, textParams=None):
self.CheckURL(url)
if textParams == None:
textParams = AlchemyAPI_TextParams()
textParams.setUrl(url)
return self.GetRequest("URLGetText", "url", textParams)

def GetRequest(self, apiCall, apiPrefix, paramObject):
endpoint = 'http://' + self._hostPrefix + '.alchemyapi.com/calls/' + apiPrefix + '/' + apiCall
endpoint += '?apikey=' + self._apiKey + paramObject.getParameterString()
handle = urllib.urlopen(endpoint)
result = handle.read()
handle.close()
xpathQuery = '/results/status'
nodes = etree.fromstring(result).xpath(xpathQuery)
if nodes[0].text != "OK":
raise 'Error making API call.'
return result

但是我得到这个错误---

  Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "text_proc.py", line 97, in __init__
self.alchemyObj.loadAPIKey("api_key.txt");
File "text_proc.py", line 115, in extractText
if self.alchemyapi == True:
File "/Users/Diesel/Desktop/AlchemyAPI.py", line 502, in URLGetText
return self.GetRequest("URLGetText", "url", textParams)
File "/Users/Diesel/Desktop/AlchemyAPI.py", line 618, in GetRequest
raise 'Error making API call.'

我知道我以某种方式将 url 字符串以错误的格式传递给 api 包装器,但我不知道如何修复它。

最佳答案

所提供的信息实际上对诊断或解决问题没有太大帮助。您是否考虑过查看服务器的响应?您可以使用 Fiddler 检查完整的流量日志.

此外,Alchemy 提供的 SDK 似乎不是 - 咳咳 - 最好的质量。因为它实际上只包含大约 600 行源代码,所以我会考虑编写一个更短、更健壮/pythonic/任何 SDK。

我现在可能还要补充一点,即使 Alchemy 网站上的现场演示也失败了,所以您的问题可能与此有关。我真的建议看看路况。

关于python - 我的 python api 包装类中的字符串错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4056073/

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