gpt4 book ai didi

python - 将 feedparser 与 Google App Engine 结合使用

转载 作者:行者123 更新时间:2023-11-28 22:03:20 25 4
gpt4 key购买 nike

我正在尝试使用 feedparser 解析 RSS 提要。为了简洁起见,下面的代码被截断了

from google.appengine.api import urlfetch
import feedparser
print 'Content-Type: text/plain'

feed_url = 'http://parsethisurl'
feedinput = urlfetch.fetch(feed_url)

rss_parsed = feedparser.parse(feedinput.content)
......
#some logic here
.........

print "\n".join(episode_info) # printing out the desired output.

在我的 python 解释器上工作正常,但是当我将我的应用程序添加到 gapp 引擎启动器并尝试通过 localhost:10000 运行它时,出现以下错误

<type 'exceptions.ImportError'>: No module named feedparser 
args = ('No module named feedparser',)
message = 'No module named feedparser'

feedparser 模块已经安装在我的系统上。

>>> sys.version
'2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit (Intel)]'
>>> import feedparser
>>>

我读了一些关于 stackoveflow 和博客的文章,feedparser 不能直接在 gapp 引擎上工作。我听从了建议并使用了 urlfetch.fetch(feed_url) 但是我也遇到了错误。

PS:gapp 启动器上的 PythonPath 是 C:\Python25\python.exe

最佳答案

您在本地安装了 feedparser,因此当您在开发服务器上运行您的应用程序时,它可以正常工作。但是为了在生产中使用 feedparser,您需要将它包含在您的项目中,因为 GAE 不为您提供这个库。

您需要将 feedparser 与您的项目文件一起上传。为此,您可以将其复制到您的应用程序根目录,然后部署您的应用程序。

关于python - 将 feedparser 与 Google App Engine 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9359006/

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