本文整理汇总了Python中API.API.get_rss_titles_list方法的典型用法代码示例。如果您正苦于以下问题:Python API.get_rss_titles_list方法的具体用法?Python API.get_rss_titles_list怎么用?Python API.get_rss_titles_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类API.API
的用法示例。
在下文中一共展示了API.get_rss_titles_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: action_request
# 需要导入模块: from API import API [as 别名]
# 或者: from API.API import get_rss_titles_list [as 别名]
def action_request(self):
titles = API.get_rss_titles_list(self.str_input)
self.build_response(titles)
# set the message according to local rules
if len(self.response.avail_titles) == 0 and len(self.response.unavail_titles) > 0:
self.response.message = 'Unfortunately no titles listed at your URL are available to ' \
'stream. You might want to set up an alert, or read the FAQs.'
elif len(self.response.avail_titles) == 0 and len(self.response.unavail_titles) == 0:
self.response.message = "We couldn't find any titles at your URL. Please read the FAQs"
elif len(self.response.avail_titles) > 0 and len(self.response.unavail_titles) == 0:
self.response.message = 'Great! All titles listed at your URL are available to stream!'
else:
self.response.message = 'Great! Some titles listed at your URL are available to stream!'