Created
July 27, 2017 09:01
-
-
Save tomkdickinson/a40138f71ab4ec3e062446c580ba373d to your computer and use it in GitHub Desktop.
Example Query
This file contains hidden or 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
rate_delay_seconds = 0 | |
error_delay_seconds = 5 | |
threads = 5 | |
select_tweets_since = datetime.datetime.strptime("2017-04-01", '%Y-%m-%d') | |
select_tweets_until = datetime.datetime.strptime("2017-04-30", '%Y-%m-%d') | |
twitSlice = TwitterSlicer(rate_delay_seconds, error_delay_seconds, select_tweets_since, select_tweets_until, | |
threads) | |
twitSlice.search("@united") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment