mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
e848f9ba30
commit
230812bc74
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = 'Luis Hernandez'
|
__author__ = 'Luis Hernandez'
|
||||||
__copyright__ = 'Luis Hernandez<tolyluis@gmail.com>'
|
__copyright__ = 'Luis Hernandez<tolyluis@gmail.com>'
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__author__ = 'Ricardo Jurado'
|
__author__ = 'Ricardo Jurado'
|
||||||
__copyright__ = 'Ricardo Jurado'
|
__copyright__ = 'Ricardo Jurado'
|
||||||
|
@ -53,11 +53,8 @@ class horizons(BasicNewsRecipe):
|
|||||||
url = 'https://www.cirsd.org' + url
|
url = 'https://www.cirsd.org' + url
|
||||||
self.cover_url = a.find('img')['src']
|
self.cover_url = a.find('img')['src']
|
||||||
self.log(self.cover_url)
|
self.log(self.cover_url)
|
||||||
issue = a.find('div', attrs={'class':'horizon-gallery-title'})
|
self.title = url.split('/')[-1].replace('-', ' ').title()
|
||||||
if issue:
|
self.log('Downloading Issue: ', self.title)
|
||||||
self.title = self.tag_to_string(issue).strip()
|
|
||||||
self.timefmt = ' [' + self.tag_to_string(issue).strip().replace('Horizons ', '') + ']'
|
|
||||||
self.log('Downloading Issue: ', self.timefmt, self.title)
|
|
||||||
soup = self.index_to_soup(url)
|
soup = self.index_to_soup(url)
|
||||||
|
|
||||||
feeds = []
|
feeds = []
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__copyright__ = '2010-2012, Darko Miletic <darko.miletic at gmail.com>, Rogelio Domínguez <rogelio.dominguez@gmail.com>'
|
__copyright__ = '2010-2012, Darko Miletic <darko.miletic at gmail.com>, Rogelio Domínguez <rogelio.dominguez@gmail.com>'
|
||||||
'''
|
'''
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
# feed source: https://www.nhk.or.jp/toppage/rss/index.html
|
# feed source: https://www.nhk.or.jp/toppage/rss/index.html
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
"""
|
"""
|
||||||
scmp.com
|
scmp.com
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user