forked from taspinar/twitterscraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move scripts with example code to get twitter user data to examples folder * user.py: * user.py: change default values of __init__ * query.py: remove redundant return * update setup.py, changelog, LICENSE, version number * README: add section for userprofile scraping info * main.py: add command line argument for user profile scraping
- Loading branch information
Showing
11 changed files
with
71 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2016 by Ahmet Taspinar ([email protected]) | ||
Copyright (c) 2016-2019 by Ahmet Taspinar ([email protected]) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
# TwitterScraper | ||
# Copyright 2016-2018 Ahmet Taspinar | ||
# Copyright 2016-2019 Ahmet Taspinar | ||
# See LICENSE for details. | ||
""" | ||
Twitter Scraper tool | ||
""" | ||
|
||
__version__ = '0.9.3' | ||
__version__ = '1.0.0' | ||
__author__ = 'Ahmet Taspinar' | ||
__license__ = 'MIT' | ||
|
||
|
||
from twitterscraper.query import query_tweets | ||
from twitterscraper.query import query_tweets_from_user | ||
from twitterscraper.query import query_user_info | ||
from twitterscraper.tweet import Tweet | ||
from twitterscraper.user import User | ||
from twitterscraper.ts_logger import logger as ts_logger |
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
Binary file removed
BIN
-1.03 MB
...scraper/screenshot_demonstrating_execution_of_scraping_twitter_user_profile.png
Binary file not shown.
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