mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class MilitaryTimes(BasicNewsRecipe):
|
|
title = 'Military Times'
|
|
__author__ = 'jde'
|
|
__date__ = '16 May 2012'
|
|
__version__ = '1.0'
|
|
description = 'News of the U.S. Military'
|
|
language = 'en'
|
|
publisher = 'MilitaryTimes.com'
|
|
category = 'news, U.S. Military'
|
|
tags = 'news, U.S. Military'
|
|
cover_url = 'http://www.militarytimes.com/images/logo_militarytimes_landing-s.gif'
|
|
masthead_url = 'http://www.militarytimes.com/images/logo_militarytimes_landing-s.gif'
|
|
oldest_article = 7 # days
|
|
max_articles_per_feed = 25
|
|
publication_type = 'newspaper'
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = None
|
|
recursions = 0
|
|
needs_subscription = False
|
|
remove_javascript = True
|
|
remove_empty_feeds = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
|
|
('News', 'http://www.militarytimes.com/rss_news.php'),
|
|
('Benefits', 'http://www.militarytimes.com/rss_benefits.php'),
|
|
('Money', 'http://www.militarytimes.com/rss_money.php'),
|
|
('Careers & Education', 'http://www.militarytimes.com/rss_careers.php'),
|
|
('Community', 'http://www.militarytimes.com/rss_community.php'),
|
|
('Off Duty', 'http://www.militarytimes.com/rss_off_duty.php'),
|
|
('Entertainment', 'http://www.militarytimes.com/rss_entertainment.php'),
|
|
('Guard & Reserve', 'http://www.militarytimes.com/rss_guard.php'),
|
|
|
|
]
|