diff --git a/recipes/dzial_zagraniczny.recipe b/recipes/dzial_zagraniczny.recipe index 9709186d7e..1b8453dd40 100644 --- a/recipes/dzial_zagraniczny.recipe +++ b/recipes/dzial_zagraniczny.recipe @@ -8,7 +8,6 @@ dzialzagraniczny.pl ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class dzial_zagraniczny(BasicNewsRecipe): title = u'Dział Zagraniczny' @@ -21,9 +20,8 @@ class dzial_zagraniczny(BasicNewsRecipe): cover_url = 'https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn1/c145.5.160.160/559442_415653975115959_2126205128_n.jpg' max_articles_per_feed = 100 remove_empty_feeds = True - simultaneous_downloads = 5 remove_javascript = True no_stylesheets = True use_embedded_content = True - - feeds = [(u'Dział zagraniczny', u'http://feeds.feedburner.com/dyndns/UOfz')] \ No newline at end of file + + feeds = [(u'Dział zagraniczny', u'http://feeds.feedburner.com/dyndns/UOfz')] diff --git a/recipes/focus_pl.recipe b/recipes/focus_pl.recipe index 66864b8561..e13e51a15a 100644 --- a/recipes/focus_pl.recipe +++ b/recipes/focus_pl.recipe @@ -1,12 +1,11 @@ -import re +#!/usr/bin/env python +__license__ = 'GPL v3' from calibre.web.feeds.news import BasicNewsRecipe - class FocusRecipe(BasicNewsRecipe): - __license__ = 'GPL v3' - __author__ = u'intromatyk ' + __author__ = u'Artur Stachecki ' language = 'pl' version = 1 diff --git a/recipes/ittechblog.recipe b/recipes/ittechblog.recipe index ba2bc8e045..3fa557d11e 100644 --- a/recipes/ittechblog.recipe +++ b/recipes/ittechblog.recipe @@ -6,7 +6,6 @@ www.ittechblog.pl ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class ittechblog(BasicNewsRecipe): title = u'IT techblog' diff --git a/recipes/km_blog.recipe b/recipes/km_blog.recipe index 8910ee060a..614dbc03e5 100644 --- a/recipes/km_blog.recipe +++ b/recipes/km_blog.recipe @@ -20,6 +20,7 @@ class km_blog(BasicNewsRecipe): remove_javascript=True no_stylesheets=True remove_empty_feeds = True + feeds = [(u'blog', u'http://korwin-mikke.pl/blog/rss')] keep_only_tags =[] diff --git a/recipes/kp.recipe b/recipes/kp.recipe index 85bf356b4d..3a2bc62eb0 100644 --- a/recipes/kp.recipe +++ b/recipes/kp.recipe @@ -2,8 +2,7 @@ from calibre.web.feeds.news import BasicNewsRecipe class KrytykaPolitycznaRecipe(BasicNewsRecipe): - __license__ = 'GPL v3' - __author__ = u'intromatyk ' + __author__ = u'Artur Stachecki ' language = 'pl' version = 1 diff --git a/recipes/media2.recipe b/recipes/media2.recipe index 3c9ef3231e..135740a62e 100644 --- a/recipes/media2.recipe +++ b/recipes/media2.recipe @@ -8,7 +8,6 @@ media2.pl ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class media2_pl(BasicNewsRecipe): title = u'Media2' @@ -33,5 +32,4 @@ class media2_pl(BasicNewsRecipe): remove_tags.append(dict(name = 'div', attrs = {'class' : 'item-sidebar'})) remove_tags.append(dict(name = 'div', attrs = {'class' : 'news-tags'})) - feeds = [(u'Media2', u'http://feeds.feedburner.com/media2')] diff --git a/recipes/mobilna.recipe b/recipes/mobilna.recipe index 624a431935..68ae011438 100644 --- a/recipes/mobilna.recipe +++ b/recipes/mobilna.recipe @@ -8,7 +8,6 @@ www.mobilna.pl ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class mobilna(BasicNewsRecipe): title = u'Mobilna.pl' diff --git a/recipes/mojegotowanie.recipe b/recipes/mojegotowanie.recipe index e4d514b2a8..4b0de4a0e1 100644 --- a/recipes/mojegotowanie.recipe +++ b/recipes/mojegotowanie.recipe @@ -8,7 +8,6 @@ www.mojegotowanie.pl ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class mojegotowanie(BasicNewsRecipe): title = u'Moje Gotowanie' diff --git a/recipes/najwyzszy_czas.recipe b/recipes/najwyzszy_czas.recipe index 6d8420d216..9c4a82c4ea 100644 --- a/recipes/najwyzszy_czas.recipe +++ b/recipes/najwyzszy_czas.recipe @@ -8,7 +8,6 @@ nczas.com ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class nczas(BasicNewsRecipe): title = u'Najwy\u017cszy Czas' diff --git a/recipes/nowiny_rybnik.recipe b/recipes/nowiny_rybnik.recipe index 11337d49af..e00a72e09b 100644 --- a/recipes/nowiny_rybnik.recipe +++ b/recipes/nowiny_rybnik.recipe @@ -3,8 +3,6 @@ __license__ = 'GPL v3' from calibre.web.feeds.news import BasicNewsRecipe -import re - class NowinyRybnik(BasicNewsRecipe): title = u'Nowiny - Rybnik' diff --git a/recipes/osw.recipe b/recipes/osw.recipe index 5e5d7c6ef0..8022f3e346 100644 --- a/recipes/osw.recipe +++ b/recipes/osw.recipe @@ -8,7 +8,6 @@ http://www.osw.waw.pl - Osrodek studiow wschodnich ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class OSW_Recipe(BasicNewsRecipe): diff --git a/recipes/ppe_pl.recipe b/recipes/ppe_pl.recipe index d1d01c2961..2edc611ad7 100644 --- a/recipes/ppe_pl.recipe +++ b/recipes/ppe_pl.recipe @@ -1,12 +1,12 @@ -import re +#!/usr/bin/env python + +__license__ = 'GPL v3' from calibre.web.feeds.news import BasicNewsRecipe class ppeRecipe(BasicNewsRecipe): - __license__ = 'GPL v3' __author__ = u'Artur Stachecki ' language = 'pl' - version = 1 title = u'ppe.pl' category = u'News' diff --git a/recipes/res_publica.recipe b/recipes/res_publica.recipe index 29d7c558e7..1c806d4a85 100644 --- a/recipes/res_publica.recipe +++ b/recipes/res_publica.recipe @@ -1,11 +1,13 @@ -import re +#!/usr/bin/env python + +__license__ = 'GPL v3' from calibre.web.feeds.news import BasicNewsRecipe from calibre.utils.magick import Image class ResPublicaNowaRecipe(BasicNewsRecipe): __license__ = 'GPL v3' - __author__ = u'intromatyk ' + __author__ = u'Artur Stachecki ' language = 'pl' version = 1 diff --git a/recipes/wolne_media.recipe b/recipes/wolne_media.recipe index 4dde5b22b5..b0e34c8bdf 100644 --- a/recipes/wolne_media.recipe +++ b/recipes/wolne_media.recipe @@ -8,7 +8,6 @@ wolnemedia.net ''' from calibre.web.feeds.news import BasicNewsRecipe -import re class wolne_media(AutomaticNewsRecipe): title = u'Wolne Media'