#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1623422650(BasicNewsRecipe):
    title          = 'The Epoch Times'
    oldest_article = 2
    max_articles_per_feed = 15
    auto_cleanup   = True

    feeds          = [
        ('US', 'https://www.theepochtimes.com/c-us/feed/'),
        ('World', 'https://www.theepochtimes.com/c-world/feed/'),
        ('General', 'https://www.theepochtimes.com/feed/'),
        ('Opinion', 'https://www.theepochtimes.com/c-opinion/feed/'),
        ('Business and Economy', 'https://www.theepochtimes.com/c-business/feed/'),
        ('Science', 'https://www.theepochtimes.com/c-science/feed/'),
        ('Tech', 'https://www.theepochtimes.com/c-tech/feed/'),
        ('Health', 'https://www.theepochtimes.com/c-wellness/feed/'),
        ('Entertainment', 'https://www.theepochtimes.com/c-entertainment/feed/'),     
    ]