Ajans Firat and Edebiyat Haber by asalet_r

This commit is contained in:
Kovid Goyal 2015-01-09 17:17:41 +05:30
parent 35f9614f19
commit 0448f2552c
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import AutomaticNewsRecipe
class BasicUserRecipe1420802286(AutomaticNewsRecipe):
title = 'Ajans F\u0131rat'
oldest_article = 14
language = 'tr'
__author__ = 'asalet_r'
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('AjansFirat', 'http://www.ajansafirat.com/rss'),
]

View File

@ -0,0 +1,16 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import AutomaticNewsRecipe
class BasicUserRecipe1420467110(AutomaticNewsRecipe):
title = 'Edebiyat Haber'
language = 'tr'
__author__ = 'asalet_r'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('Edebiyat Haber', 'http://feeds.feedburner.com/feedburner/edebiyathaber'),
]