Iceloof / GoogleNews

Script for GoogleNews
https://pypi.org/project/GoogleNews/
MIT License
314 stars 88 forks source link

Allow adding search arguments to query #110

Closed emremrah closed 1 year ago

emremrah commented 1 year ago

See the related issue here.

This commit allows adding search arguments to query:

googlenews = GoogleNews()
googlenews.set_period("6h")
googlenews.get_news("new year -celebrations")

to get news about new year but not celebrations, in the past 6 hours.

All test cases have passed.