From 0448f2552c54dbf96beec1b81b9dd3e74f119a0f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 9 Jan 2015 17:17:41 +0530 Subject: [PATCH] Ajans Firat and Edebiyat Haber by asalet_r --- recipes/ajans_firat.recipe | 16 ++++++++++++++++ recipes/edebiyat_haber.recipe | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 recipes/ajans_firat.recipe create mode 100644 recipes/edebiyat_haber.recipe diff --git a/recipes/ajans_firat.recipe b/recipes/ajans_firat.recipe new file mode 100644 index 0000000000..6629892b25 --- /dev/null +++ b/recipes/ajans_firat.recipe @@ -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'), + ] diff --git a/recipes/edebiyat_haber.recipe b/recipes/edebiyat_haber.recipe new file mode 100644 index 0000000000..bb4433541c --- /dev/null +++ b/recipes/edebiyat_haber.recipe @@ -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'), + ]