#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe
from datetime import datetime

class google_news_de(BasicNewsRecipe):
    # variables you should change to fit your requests!
    # here are a sample for an english speaking user intrested in ebook content and news from india
    #       
    searchfor = 'computer'		# a serarch topic, filled into the string below. You can change that to anything google news should be searched for...
    my_language_id = 'de' 	# may us, de,  or other.... change this if you want
    location	= 'berlin'

     # Titel of the Recipe - this is a sample
    title = 'Google News de'
    cover_url = 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Google_News_icon.svg/500px-Google_News_icon.svg.png'
    # Author
    __author__ = 'Volker Heggemann, VoHe'
    # oldes article to download (in days) 									---- can be edit by user
    oldest_article = 2
    # describes itself, 						 							---- can be edit by user
    max_articles_per_feed = 200
    # speed up the download on fast computers be carefull (I test max.20)
    # ---- can be edit by user
    simultaneous_downloads = 10
    # description, some Reader show this in titlepage
    description = u'Google News filter by your own recipe. Please read it in calibre software!'
    # add date to description so for dayly downloads you can find them easier
    # ---- can be edit by user
    description = description + ' fetched: ' + \
        datetime.now().strftime("%Y-%m-%d")  # %H:%M:%S")
    # Who published the content?
    publisher = u'https://news.google.com/topstories?hl='+my_language_id+'&gl=DE&ceid=DE:'+my_language_id
    # What is the content of?
    category = u'NEWS'
    # describes itself, 						 							---- can be edit by user
    use_embedded_content = False
    # describes itself, 						 							---- can be edit by user
    language = my_language_id
    # encoding of content. e.g. utf-8, None, ...
    # ---- can be edit by user
    # encoding = None  
    # Removes javascript- why keep this, we only want static content
    remove_javascript = True
    # Removes empty feeds - why keep them!?
    remove_empty_feeds = True

    # remove the rubbish (in ebook)
    auto_cleanup = True
    # now the content description and URL follows
    # feel free to add, wipe out what you need	 							---- can be edit by user
    #
    feeds          = [
                       ('Google news for '+location, 
                            'https://news.google.de/news/rss/headlines/section/geo/'+location),
                       ('Google news intrested in '+searchfor, 
                            'https://news.google.com/news?cf=all&hl='+my_language_id+'+&pz=1&ned='+my_language_id+'&q='+searchfor+'&output=rss'),
                     ]