Skip to main content

Google News search for Python

Project description

GoogleNews

Build Status Coverage Status PyPI PyPI - Downloads PyPI - Python Version PyPI - Wheel GitHub contributors GitHub issues GitHub Action GitHub

Install

pip install GoogleNews

or

pip install --upgrade GoogleNews

Usage

  • Initializing
from GoogleNews import GoogleNews
googlenews = GoogleNews()
  • Optional choose language
googlenews = GoogleNews(lang='en')
  • Optional choose period (period and custom day range should not set together)
googlenews = GoogleNews(period='7d')
  • Optional choose custom day range (mm/dd/yyyy)
googlenews = GoogleNews(start='02/01/2020',end='02/28/2020')
  • Optional set encode
googlenews = GoogleNews(encode='utf-8')

or

googlenews.set_lang('en')
googlenews.set_period('7d')
googlenews.set_time_range('02/01/2020','02/28/2020')
googlenews.set_encode('utf-8')
  • news.google.com search sample
googlenews.get_news('APPLE')
  • google.com section news search sample
googlenews.search('APPLE')

Default return first page result. To get other page of search results:

googlenews.get_page(2)
  • Get results will return the list, [{'title': '...', 'media': '...', 'date': '...', 'datetime': '...', 'desc': '...', 'link': '...', 'img': '...'}]
googlenews.results()

if googlenews.results(sort=True) the tool will try to order the results in cronologically reversed order

  • Get texts will return the list of news titles
googlenews.get_texts()
  • Get links returns the list of news links
googlenews.get_links()
  • Clear result list before doing another search with the same object
googlenews.clear()

Issue

Image is not working in the latest version, it can only return default google loading gif

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

GoogleNews-1.5.1.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

GoogleNews-1.5.1-py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page