mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
22 lines
635 B
Plaintext
22 lines
635 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1282101454(BasicNewsRecipe):
|
|
title = 'Kansas City Star'
|
|
language = 'en'
|
|
__author__ = 'TonytheBookworm'
|
|
description = 'www.kansascity.com feed'
|
|
publisher = 'Tony Stegall'
|
|
category = 'news, politics, USA, kansascity'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
|
|
masthead_url = 'http://media.kansascity.com/images/site_logo_340x60.gif'
|
|
|
|
feeds = [
|
|
('kansascity.com', 'http://www.kansascity.com/?widgetName=rssfeed&widgetContentId=6199&getXmlFeed=true'),
|
|
|
|
]
|