From c64dd31931f58403a19c85ef6b90d0faa2300365 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 1 Aug 2017 20:12:20 +0530 Subject: [PATCH] Various Sardinian news sources by tzium --- recipes/anthony_muroni.recipe | 19 +++++++++++++++++++ recipes/boxis.recipe | 17 +++++++++++++++++ recipes/limba_sarda.recipe | 17 +++++++++++++++++ recipes/sa_gazeta.recipe | 17 +++++++++++++++++ 4 files changed, 70 insertions(+) create mode 100644 recipes/anthony_muroni.recipe create mode 100644 recipes/boxis.recipe create mode 100644 recipes/limba_sarda.recipe create mode 100644 recipes/sa_gazeta.recipe diff --git a/recipes/anthony_muroni.recipe b/recipes/anthony_muroni.recipe new file mode 100644 index 0000000000..ceaa5e4ae3 --- /dev/null +++ b/recipes/anthony_muroni.recipe @@ -0,0 +1,19 @@ +#!/usr/bin/env python2 +# vim:fileencoding=utf-8 +from __future__ import (absolute_import, division, print_function, + unicode_literals) + +from calibre.web.feeds.news import AutomaticNewsRecipe + + +class BasicUserRecipe1501589429(AutomaticNewsRecipe): + title = 'AnthonyMuroni.it (sardu)' + oldest_article = 30 + max_articles_per_feed = 100 + auto_cleanup = True + language = 'sc' + __author__ 'tzium' + + feeds = [ + ('AnthonyMuroni.it (sardu)', 'http://www.anthonymuroni.it/su/feed/'), + ] diff --git a/recipes/boxis.recipe b/recipes/boxis.recipe new file mode 100644 index 0000000000..38698b4e54 --- /dev/null +++ b/recipes/boxis.recipe @@ -0,0 +1,17 @@ +#!/usr/bin/env python2 +# vim:fileencoding=utf-8 +from __future__ import unicode_literals, division, absolute_import, print_function +from calibre.web.feeds.news import AutomaticNewsRecipe + + +class BasicUserRecipe1501590114(AutomaticNewsRecipe): + title = 'Boxis' + oldest_article = 240 + max_articles_per_feed = 100 + auto_cleanup = True + language = 'sc' + __author__ = 'tzium' + + feeds = [ + ('Boxis', 'http://www.boxis.it/sc/feed/'), + ] diff --git a/recipes/limba_sarda.recipe b/recipes/limba_sarda.recipe new file mode 100644 index 0000000000..8f70efbd59 --- /dev/null +++ b/recipes/limba_sarda.recipe @@ -0,0 +1,17 @@ +#!/usr/bin/env python2 +# vim:fileencoding=utf-8 +from __future__ import unicode_literals, division, absolute_import, print_function +from calibre.web.feeds.news import AutomaticNewsRecipe + + +class BasicUserRecipe1501589422(AutomaticNewsRecipe): + title = 'Limba Sarda 2.0' + oldest_article = 30 + max_articles_per_feed = 100 + auto_cleanup = True + language = 'sc' + __author__ = 'tzium' + + feeds = [ + ('Limba Sarda 2.0', 'http://salimbasarda.net/feed/'), + ] diff --git a/recipes/sa_gazeta.recipe b/recipes/sa_gazeta.recipe new file mode 100644 index 0000000000..3e97fb6429 --- /dev/null +++ b/recipes/sa_gazeta.recipe @@ -0,0 +1,17 @@ +#!/usr/bin/env python2 +# vim:fileencoding=utf-8 +from __future__ import unicode_literals, division, absolute_import, print_function +from calibre.web.feeds.news import AutomaticNewsRecipe + + +class BasicUserRecipe1501589847(AutomaticNewsRecipe): + title = 'Sa gazeta' + oldest_article = 30 + max_articles_per_feed = 100 + auto_cleanup = True + language = 'sc' + __author__ = 'tzium' + + feeds = [ + ('Sa gazeta', 'http://www.sagazeta.info/feeds/posts/default'), + ]