@@ 355-377 (lines=23) @@ | ||
352 | return [] |
|
353 | ||
354 | ||
355 | class ExtraFabulousComics(GenericNavigableComic): |
|
356 | """Class to retrieve Extra Fabulous Comics.""" |
|
357 | name = 'efc' |
|
358 | long_name = 'Extra Fabulous Comics' |
|
359 | url = 'http://extrafabulouscomics.com' |
|
360 | get_first_comic_link = get_a_navi_navifirst |
|
361 | get_navi_link = get_link_rel_next |
|
362 | ||
363 | @classmethod |
|
364 | def get_comic_info(cls, soup, link): |
|
365 | """Get information about a particular comics.""" |
|
366 | img_src_re = re.compile('^%s/wp-content/uploads/' % cls.url) |
|
367 | imgs = soup.find_all('img', src=img_src_re) |
|
368 | title = soup.find('meta', property='og:title')['content'] |
|
369 | date_str = soup.find('meta', property='article:published_time')['content'][:10] |
|
370 | day = string_to_date(date_str, "%Y-%m-%d") |
|
371 | return { |
|
372 | 'title': title, |
|
373 | 'img': [i['src'] for i in imgs], |
|
374 | 'month': day.month, |
|
375 | 'year': day.year, |
|
376 | 'day': day.day, |
|
377 | 'prefix': title + '-' |
|
378 | } |
|
379 | ||
380 | ||
@@ 2351-2375 (lines=25) @@ | ||
2348 | } |
|
2349 | ||
2350 | ||
2351 | class LinsEditions(GenericNavigableComic): |
|
2352 | """Class to retrieve L.I.N.S. Editions comics.""" |
|
2353 | # Also on http://linscomics.tumblr.com |
|
2354 | # Now on https://warandpeas.com |
|
2355 | name = 'lins' |
|
2356 | long_name = 'L.I.N.S. Editions' |
|
2357 | url = 'https://linsedition.com' |
|
2358 | _categories = ('LINS', ) |
|
2359 | get_navi_link = get_link_rel_next |
|
2360 | get_first_comic_link = simulate_first_link |
|
2361 | first_url = 'https://linsedition.com/2011/09/07/l-i-n-s/' |
|
2362 | ||
2363 | @classmethod |
|
2364 | def get_comic_info(cls, soup, link): |
|
2365 | """Get information about a particular comics.""" |
|
2366 | title = soup.find('meta', property='og:title')['content'] |
|
2367 | imgs = soup.find_all('meta', property='og:image') |
|
2368 | date_str = soup.find('meta', property='article:published_time')['content'][:10] |
|
2369 | day = string_to_date(date_str, "%Y-%m-%d") |
|
2370 | return { |
|
2371 | 'title': title, |
|
2372 | 'img': [i['content'] for i in imgs], |
|
2373 | 'month': day.month, |
|
2374 | 'year': day.year, |
|
2375 | 'day': day.day, |
|
2376 | } |
|
2377 | ||
2378 | ||
@@ 1047-1071 (lines=25) @@ | ||
1044 | } |
|
1045 | ||
1046 | ||
1047 | class Mercworks(GenericNavigableComic): |
|
1048 | """Class to retrieve Mercworks comics.""" |
|
1049 | # Also on http://mercworks.tumblr.com |
|
1050 | name = 'mercworks' |
|
1051 | long_name = 'Mercworks' |
|
1052 | url = 'http://mercworks.net' |
|
1053 | get_first_comic_link = get_a_comicnavbase_comicnavfirst |
|
1054 | get_navi_link = get_link_rel_next |
|
1055 | ||
1056 | @classmethod |
|
1057 | def get_comic_info(cls, soup, link): |
|
1058 | """Get information about a particular comics.""" |
|
1059 | title = soup.find('meta', property='og:title')['content'] |
|
1060 | metadesc = soup.find('meta', property='og:description') |
|
1061 | desc = metadesc['content'] if metadesc else "" |
|
1062 | date_str = soup.find('meta', property='article:published_time')['content'][:10] |
|
1063 | day = string_to_date(date_str, "%Y-%m-%d") |
|
1064 | imgs = soup.find_all('meta', property='og:image') |
|
1065 | return { |
|
1066 | 'img': [i['content'] for i in imgs], |
|
1067 | 'title': title, |
|
1068 | 'desc': desc, |
|
1069 | 'day': day.day, |
|
1070 | 'month': day.month, |
|
1071 | 'year': day.year |
|
1072 | } |
|
1073 | ||
1074 | ||
@@ 3292-3313 (lines=22) @@ | ||
3289 | } |
|
3290 | ||
3291 | ||
3292 | class MarketoonistComics(GenericNavigableComic): |
|
3293 | """Class to retrieve Marketoonist Comics.""" |
|
3294 | name = 'marketoonist' |
|
3295 | long_name = 'Marketoonist' |
|
3296 | url = 'https://marketoonist.com/cartoons' |
|
3297 | get_first_comic_link = simulate_first_link |
|
3298 | get_navi_link = get_link_rel_next |
|
3299 | first_url = 'https://marketoonist.com/2002/10/the-8-types-of-brand-managers-2.html' |
|
3300 | ||
3301 | @classmethod |
|
3302 | def get_comic_info(cls, soup, link): |
|
3303 | """Get information about a particular comics.""" |
|
3304 | imgs = soup.find_all('meta', property='og:image') |
|
3305 | date_str = soup.find('meta', property='article:published_time')['content'][:10] |
|
3306 | day = string_to_date(date_str, "%Y-%m-%d") |
|
3307 | title = soup.find('meta', property='og:title')['content'] |
|
3308 | return { |
|
3309 | 'img': [i['content'] for i in imgs], |
|
3310 | 'day': day.day, |
|
3311 | 'month': day.month, |
|
3312 | 'year': day.year, |
|
3313 | 'title': title, |
|
3314 | } |
|
3315 | ||
3316 |