calibre/recipes/the_press_project.recipe
2024-03-30 13:03:29 +05:30

21 lines
836 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: GPLv3 Copyright: 2023, Sotiris Papatheodorou
from calibre.web.feeds.news import BasicNewsRecipe
class ThePressProject(BasicNewsRecipe):
title = 'ThePressProject'
__author__ = 'Sotiris Papatheodorou'
description = (
'Το ThePressProject είναι ένα ανεξάρτητο μέσο μαζικής ενημέρωσης που '
'ιδρύθηκε το 2010. Είναι ανεξάρτητο γιατί καταστατικά δεν δέχεται '
'καμία συναλλαγή με το κράτος, τις τράπεζες και τις πολυεθνικές.'
)
language = 'el'
publication_type = 'newspaper'
feeds = ['https://thepressproject.gr/feed/atom/']
encoding = 'utf-8'
remove_attributes = ['align']