News application in Python ..
News feed application in Python .. .. by gnewsclient The source code : # import modules from tkinter import * from gnewsclient import gnewsclient # pip install gnewsclient # defined funtions def news (): client = gnewsclient.NewsClient( language =lang.get() , location =loc.get() , topic =top.get() , max_results = 3 ) news_list = client.get_news() result_title.set(news_list[ 0 ][ "title" ] + " \n " + news_list[ 1 ][ "title" ] + " \n " + news_list[ 2 ][ "title" ]) # tkinter object master = Tk() master.title( "NEWS" ) # background set to grey master.configure( bg = 'light grey' ) # Variable Classes in tkinter result_title = StringVar() result_link = StringVar() # Creating label for each information # name using widget Label Label(master , text = "Choose language :" , bg = "light grey" ).grid( row = 0 , sticky =W) Label(master , text = "Choose Location :"
Comments
Post a Comment