Home > database >  Coding a GUI for Python: Google-News Project
Coding a GUI for Python: Google-News Project

Time:01-02

I want to create a little GUI on Python for the code below. The GUI should have the function to ask the user which Keyword she/he wants to search, so the user can enter the needed keyword. Can someone help me create it?

from GoogleNews import GoogleNews
ssl._create_default_https_context = ssl._create_unverified_context
googlenews.set_lang('en')
googlenews.get_news('"EXAMPLE"')
keys = googlenews.results()[0].keys()
´´´

CodePudding user response:

tkinter is a pretty good GUI program to work with python.

  • Related