-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtwitterstreamNew.py
More file actions
68 lines (48 loc) · 1.81 KB
/
twitterstreamNew.py
File metadata and controls
68 lines (48 loc) · 1.81 KB
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
import oauth2 as oauth
import urllib2 as urllib
import json
# See Assignment 1 instructions or README for how to get these credentials
access_token_key = "Your token Key"
access_token_secret = "Your token secret"
consumer_key = "your consumer key"
consumer_secret = "your consumer secret"
_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_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://api.twitter.com/1.1/search/tweets.json?q=microsoft"
parameters = []
response = twitterreq(url, "GET", parameters)
return json.load(response)
# for line in response:
# print line.strip()
#if __name__ == '__main__':
# fetchsamples()
myResults = fetchsamples()
print type(myResults)