mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
31 lines
1.4 KiB
Python
31 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Bellingcat(BasicNewsRecipe):
|
|
title = 'Bellingcat'
|
|
__author__ = 'bugmen00t'
|
|
description = 'Bellingcat es un colectivo internacional independiente de investigadores y periodistas ciudadanos que usan informaci\u00F3n de fuente abierta y redes sociales para investigar una gran variedad de temas, desde carteles de droga en M\u00E9xico y cr\u00EDmenes de lesa humanidad hasta el rastreo de armas qu\u00EDmicas en zonas de conflicto alrededor del mundo. Nosotros operamos en un campo \u00FAnico donde la tecnolog\u00EDa avanzada, las investigaciones forenses, el periodismo, y la transparencia y responsabilidad se unen.' # noqa: E501
|
|
publisher = 'Stichting Bellingcat'
|
|
category = 'blog'
|
|
cover_url = u'https://www.bellingcat.com/app/uploads/2018/04/bellingcat_HP_logo_black.jpg'
|
|
language = 'es'
|
|
no_stylesheets = False
|
|
remove_javascript = False
|
|
auto_cleanup = False
|
|
oldest_article = 300
|
|
max_articles_per_feed = 10
|
|
|
|
remove_tags_before = dict(name='div', attrs={'class': 'container'})
|
|
|
|
remove_tags_after = dict(name='div', attrs={'class': 'container'})
|
|
|
|
remove_tags = [
|
|
dict(name='div', attrs={'class': 'social social--share'}),
|
|
dict(name='div', attrs={'class': 'singular__related'})
|
|
]
|
|
|
|
feeds = [('Bellingcat', 'https://es.bellingcat.com/feed/')]
|