Python和RSS提要 - 解析进纸器

时间:2016-09-16 13:52:12

标签: python parsing rss feed feedparser

我在python中使用了feed解析器,而且我是python的初学者。

sudo apt-get install libcurl3

我要做的是让Feed解析器在RSS Feed中的标题内找到几个单词。

1 个答案:

答案 0 :(得分:0)

请注意,不会分布在 运算符中。

if test_word3 in post.title and
   test_word2 in post.title:

应该解决你的问题。你写的内容被评估为

if test_word3 and (test_word2 in post.title):

......这变成......

if (test_word3 != "") and (test_word2 in post.title):

简化一点...... 字符串的布尔值是否为非空。 整数的布尔值是否为非零。