Created
April 21, 2015 17:32
-
-
Save kshepp/4c5684ec9e04f4950242 to your computer and use it in GitHub Desktop.
Scraping Twitter Statuses
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
import sys | |
import string | |
from twython import Twython | |
twitter = Twython('Insert Consumer Key Here', | |
'Insert Consumer Secret Key',oauth_version=2) | |
Access_token = twitter.obtain_access_token() | |
t = Twython('Insert Consumer Key', access_token=Access_token) | |
user_timeline = t.search(q='@puremichigan', count=20, include_rts=1) | |
for tweets in user_timeline['statuses']: | |
print tweets['text'] +"\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment