diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-11 23:58:30 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 23:58:30 +0000 |
commit | d86fdff14cbc3039e93c04addb22bd60a9b15ac3 (patch) | |
tree | f4e7193dd1f7c25db13db5f2942d73234b8c3362 | |
parent | c34a0ec47cd0d1afef5c8741ef4c4c034be55aef (diff) |
automatic import of python-googlenews
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-googlenews.spec | 399 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 401 insertions, 0 deletions
@@ -0,0 +1 @@ +/GoogleNews-1.6.7.tar.gz diff --git a/python-googlenews.spec b/python-googlenews.spec new file mode 100644 index 0000000..a34c6a0 --- /dev/null +++ b/python-googlenews.spec @@ -0,0 +1,399 @@ +%global _empty_manifest_terminate_build 0 +Name: python-GoogleNews +Version: 1.6.7 +Release: 1 +Summary: Google News search for Python +License: MIT License +URL: https://github.com/Iceloof/GoogleNews +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/3d/8a/257778b6ede74716427bc6f006ecc960908a2de2e3910c5b65cb1cbd8484/GoogleNews-1.6.7.tar.gz +BuildArch: noarch + +Requires: python3-beautifulsoup4 +Requires: python3-dateparser +Requires: python3-dateutil + +%description +# GoogleNews + +[](https://app.travis-ci.com/github/Iceloof/GoogleNews) +[](https://coveralls.io/github/Iceloof/GoogleNews) +[](https://pypi.org/project/GoogleNews/) +[](https://pypistats.org/packages/googlenews) + + + + + + + +## Install +``` +pip install GoogleNews +``` +or +``` +pip install --upgrade GoogleNews +``` +## Usage +- Initializing +``` +from GoogleNews import GoogleNews +googlenews = GoogleNews() +``` +- Check version +``` +print(googlenews.getVersion()) +``` +- Enable to throw exception +``` +googlenews.enableException(True) +``` +- Optional choose language +``` +googlenews = GoogleNews(lang='en') +``` +or +``` +googlenews = GoogleNews(lang='en', region='US') +``` +- 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, you don't need to get first page again, otherwise you might get duplicate result. To get other page of search results: + +``` +googlenews.get_page(2) +``` +- If you only want to get specific page +``` +result = googlenews.page_at(2) +``` +- If you want to get the total result number of the search(this is approximate number, not exact number, it is the number showing on the google search page) +``` +googlenews.total_count() +``` +- 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 + +The date range is not always working as Google may return the result with random order or out of date range. + +Google may recognize the program as automated robots and block the IP, using cloud server and fetching data with high frequency will get higher chance to be blocked. + + +%package -n python3-GoogleNews +Summary: Google News search for Python +Provides: python-GoogleNews +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-GoogleNews +# GoogleNews + +[](https://app.travis-ci.com/github/Iceloof/GoogleNews) +[](https://coveralls.io/github/Iceloof/GoogleNews) +[](https://pypi.org/project/GoogleNews/) +[](https://pypistats.org/packages/googlenews) + + + + + + + +## Install +``` +pip install GoogleNews +``` +or +``` +pip install --upgrade GoogleNews +``` +## Usage +- Initializing +``` +from GoogleNews import GoogleNews +googlenews = GoogleNews() +``` +- Check version +``` +print(googlenews.getVersion()) +``` +- Enable to throw exception +``` +googlenews.enableException(True) +``` +- Optional choose language +``` +googlenews = GoogleNews(lang='en') +``` +or +``` +googlenews = GoogleNews(lang='en', region='US') +``` +- 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, you don't need to get first page again, otherwise you might get duplicate result. To get other page of search results: + +``` +googlenews.get_page(2) +``` +- If you only want to get specific page +``` +result = googlenews.page_at(2) +``` +- If you want to get the total result number of the search(this is approximate number, not exact number, it is the number showing on the google search page) +``` +googlenews.total_count() +``` +- 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 + +The date range is not always working as Google may return the result with random order or out of date range. + +Google may recognize the program as automated robots and block the IP, using cloud server and fetching data with high frequency will get higher chance to be blocked. + + +%package help +Summary: Development documents and examples for GoogleNews +Provides: python3-GoogleNews-doc +%description help +# GoogleNews + +[](https://app.travis-ci.com/github/Iceloof/GoogleNews) +[](https://coveralls.io/github/Iceloof/GoogleNews) +[](https://pypi.org/project/GoogleNews/) +[](https://pypistats.org/packages/googlenews) + + + + + + + +## Install +``` +pip install GoogleNews +``` +or +``` +pip install --upgrade GoogleNews +``` +## Usage +- Initializing +``` +from GoogleNews import GoogleNews +googlenews = GoogleNews() +``` +- Check version +``` +print(googlenews.getVersion()) +``` +- Enable to throw exception +``` +googlenews.enableException(True) +``` +- Optional choose language +``` +googlenews = GoogleNews(lang='en') +``` +or +``` +googlenews = GoogleNews(lang='en', region='US') +``` +- 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, you don't need to get first page again, otherwise you might get duplicate result. To get other page of search results: + +``` +googlenews.get_page(2) +``` +- If you only want to get specific page +``` +result = googlenews.page_at(2) +``` +- If you want to get the total result number of the search(this is approximate number, not exact number, it is the number showing on the google search page) +``` +googlenews.total_count() +``` +- 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 + +The date range is not always working as Google may return the result with random order or out of date range. + +Google may recognize the program as automated robots and block the IP, using cloud server and fetching data with high frequency will get higher chance to be blocked. + + +%prep +%autosetup -n GoogleNews-1.6.7 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-GoogleNews -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.6.7-1 +- Package Spec generated @@ -0,0 +1 @@ +e33811c9f7a62f45b541b28a92ae11e2 GoogleNews-1.6.7.tar.gz |