-
Notifications
You must be signed in to change notification settings - Fork 11
/
twitterstream.py
69 lines (52 loc) · 2.35 KB
/
twitterstream.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import oauth2 as oauth
import urllib2 as urllib
# See Assginment 6 instructions or README for how to get these credentials
##########################################################################################
# OAUTH
##########################################################################################
access_token_key = "88190104-AHTqm364uwJ7bEYpm8AlAddwfDxsetbsMaiYLZRpa"
access_token_secret = "sqQPYyYodvUyfb01wq3lPEbm3K7Ww3SebX7rlpaBsY"
consumer_key = "hV7RHswLOVl2oJ0DzFRmQ"
consumer_secret = "SPJPhLTp3Lzq02Azt1IU8UPI8F81iKmwDB6gwVDBgU"
_debug = 0
oauth_token = oauth.Token(key=access_token_key, secret=access_token_secret)
oauth_consumer = oauth.Consumer(key=consumer_key, secret=consumer_secret)
signature_method_hmac_sha1 = oauth.SignatureMethod_HMAC_SHA1()
##########################################################################################
##########################################################################################
# HTTP interaction
##########################################################################################
http_method = "GET"
http_handler = urllib.HTTPHandler(debuglevel=_debug)
https_handler = urllib.HTTPSHandler(debuglevel=_debug)
##########################################################################################
'''
Construct, sign, and open a twitter request
using the hard-coded credentials above.
'''
def twitterreq(url, method, parameters):
req = oauth.Request.from_consumer_and_token(oauth_consumer,
token=oauth_token,
http_method=http_method,
http_url=url,
parameters=parameters)
req.sign_request(signature_method_hmac_sha1, oauth_consumer, oauth_token)
headers = req.to_header()
if http_method == "POST":
encoded_post_data = req.to_postdata()
else:
encoded_post_data = None
url = req.to_url()
opener = urllib.OpenerDirector()
opener.add_handler(http_handler)
opener.add_handler(https_handler)
response = opener.open(url, encoded_post_data)
return response
def fetchsamples():
url = "https://stream.twitter.com/1/statuses/sample.json"
parameters = []
response = twitterreq(url, "GET", parameters)
for line in response:
print line.strip()
if __name__ == '__main__':
fetchsamples()