Skip to content

added readme.md and improved spellings #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# web_scraping_resources
WEB SCRAPING AND CONTENT MINING Web Scraping is a method for extracting textual characters from websites so that they could be analyzed. Web scraping is sort of content mining, which means that you collect useful information from websites, including quotes, prices, news company info, etc.This method for gathering data is direct, either through looking at websites' html code or visual abstraction techniques using Python programming language.
This is a open source project
2 changes: 1 addition & 1 deletion two/appTwitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
world_trends = twitter_api.trends.place(_id=WORLD_WOE_ID)
us_trends = twitter_api.trends.place(_id=US_WOE_ID)
#print("US Trends",us_trends)
# lets conver twitter object to string, dumps takes an object and produces a string
# lets convert twitter object to string, dumps takes an object and produces a string

# print(json.dumps(us_trends, indent=1))
# from this we can get trends
Expand Down