-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update readme with pip installing of package
- Loading branch information
1 parent
f6a308c
commit 55dd990
Showing
4 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from googlenewsscraper import Request, GoogleNews, NewsArticle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name = 'pygooglenewsscraper', | ||
packages = ['pygooglenewsscraper'], | ||
version = '0.1', | ||
license = 'MIT', | ||
description = 'Scrape news content from the Google News website', | ||
author = 'Shaheen Syed', | ||
author_email = 'shaheensyed15@gmail.com', | ||
url = 'https://github.com/shaheen-syed', | ||
download_url = 'https://github.com/shaheen-syed/pygooglenewsscraper/archive/refs/tags/v_0.1.tar.gz', | ||
keywords = ['web scraper', 'google news', 'parser', 'python', 'crawler'], | ||
install_requires=[ | ||
'requests', | ||
'trafilatura', | ||
'beautifulsoup4', | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
) |