|
@@ 1767-1797 (lines=31) @@
|
| 1764 |
|
} |
| 1765 |
|
|
| 1766 |
|
|
| 1767 |
|
class RespawnComic(GenericNavigableComic): |
| 1768 |
|
"""Class to retrieve Respawn Comic.""" |
| 1769 |
|
# Also on http://respawncomic.tumblr.com |
| 1770 |
|
name = 'respawn' |
| 1771 |
|
long_name = 'Respawn Comic' |
| 1772 |
|
url = 'http://respawncomic.com ' |
| 1773 |
|
_categories = ('RESPAWN', ) |
| 1774 |
|
get_navi_link = get_a_rel_next |
| 1775 |
|
get_first_comic_link = simulate_first_link |
| 1776 |
|
first_url = 'http://respawncomic.com/comic/c0001/' |
| 1777 |
|
|
| 1778 |
|
@classmethod |
| 1779 |
|
def get_comic_info(cls, soup, link): |
| 1780 |
|
"""Get information about a particular comics.""" |
| 1781 |
|
title = soup.find('meta', property='og:title')['content'] |
| 1782 |
|
author = soup.find('meta', attrs={'name': 'shareaholic:article_author_name'})['content'] |
| 1783 |
|
date_str = soup.find('meta', attrs={'name': 'shareaholic:article_published_time'})['content'] |
| 1784 |
|
date_str = date_str[:10] |
| 1785 |
|
day = string_to_date(date_str, "%Y-%m-%d") |
| 1786 |
|
imgs = soup.find_all('meta', property='og:image') |
| 1787 |
|
skip_imgs = { |
| 1788 |
|
'http://respawncomic.com/wp-content/uploads/2016/03/site/HAROLD2.png', |
| 1789 |
|
'http://respawncomic.com/wp-content/uploads/2016/03/site/DEVA.png' |
| 1790 |
|
} |
| 1791 |
|
return { |
| 1792 |
|
'title': title, |
| 1793 |
|
'author': author, |
| 1794 |
|
'day': day.day, |
| 1795 |
|
'month': day.month, |
| 1796 |
|
'year': day.year, |
| 1797 |
|
'img': [i['content'] for i in imgs if i['content'] not in skip_imgs], |
| 1798 |
|
} |
| 1799 |
|
|
| 1800 |
|
|
|
@@ 1006-1033 (lines=28) @@
|
| 1003 |
|
} |
| 1004 |
|
|
| 1005 |
|
|
| 1006 |
|
class Mercworks(GenericNavigableComic): |
| 1007 |
|
"""Class to retrieve Mercworks comics.""" |
| 1008 |
|
# Also on http://mercworks.tumblr.com |
| 1009 |
|
name = 'mercworks' |
| 1010 |
|
long_name = 'Mercworks' |
| 1011 |
|
url = 'http://mercworks.net' |
| 1012 |
|
get_first_comic_link = get_a_comicnavbase_comicnavfirst |
| 1013 |
|
get_navi_link = get_a_rel_next |
| 1014 |
|
|
| 1015 |
|
@classmethod |
| 1016 |
|
def get_comic_info(cls, soup, link): |
| 1017 |
|
"""Get information about a particular comics.""" |
| 1018 |
|
title = soup.find('meta', property='og:title')['content'] |
| 1019 |
|
metadesc = soup.find('meta', property='og:description') |
| 1020 |
|
desc = metadesc['content'] if metadesc else "" |
| 1021 |
|
author = soup.find('meta', attrs={'name': 'shareaholic:article_author_name'})['content'] |
| 1022 |
|
date_str = soup.find('meta', attrs={'name': 'shareaholic:article_published_time'})['content'] |
| 1023 |
|
date_str = date_str[:10] |
| 1024 |
|
day = string_to_date(date_str, "%Y-%m-%d") |
| 1025 |
|
imgs = soup.find_all('meta', property='og:image') |
| 1026 |
|
return { |
| 1027 |
|
'img': [i['content'] for i in imgs], |
| 1028 |
|
'title': title, |
| 1029 |
|
'author': author, |
| 1030 |
|
'desc': desc, |
| 1031 |
|
'day': day.day, |
| 1032 |
|
'month': day.month, |
| 1033 |
|
'year': day.year |
| 1034 |
|
} |
| 1035 |
|
|
| 1036 |
|
|