-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnba_api.py
120 lines (97 loc) · 3.48 KB
/
nba_api.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import tweepy
from time import mktime
from textwrap import TextWrapper
import redis
class StreamNBAListener(tweepy.StreamListener):
"""
A custom class that manipulates Twitter stream.
"""
status_wrapper = TextWrapper(width=60, initial_indent=' ', subsequent_indent=' ')
r = redis.Redis(host = 'localhost', port = 6379, db = 0)
def on_status(self, status):
"""
Define listener's behavior when a new status is streamed to me. Listener will:
1. Format and display status metadata.
2. Save status info to Redis database.
"""
name = status.author.screen_name
t = status.created_at
source = status.source
text = status.text.replace('\n', ' ').strip('"').encode(
'utf-8').replace('\t', ' ').replace(
'\015', ' ')
# Some statuses do not have coordinates. Save value as missing.
if status.coordinates:
coords = status.coordinates['coordinates']
else:
coords = '[NA, NA]'
try:
print self.status_wrapper.fill(status.text)
print '\n %s %s via %s\n' % (name, t, source)
print status.coordinates['coordinates']
except:
# Catch any unicode errors while printing to console
# and just ignore them to avoid breaking application.
pass
# Instantiating key for new tweet, pushing values onto key.
counter = 1
key = "%s:%0.2d" % (str(t), counter)
while self.r.exists(key):
counter += 1
key = "%s:%0.2d" % (str(t), counter)
self.r.rpush(key, name)
self.r.rpush(key, coords)
self.r.rpush(key, text)
def on_error(self, status_code):
print "Error! Status code: %s" % status_code
return True
def on_timeout(self):
outfile.close()
print "Nap time! ZZZZZZZZZzzzzzz"
def start_api(auth_dict):
"""
Start and authenticate Twitter API instance. Create a global out
of the returned API.
"""
auth = tweepy.OAuthHandler(auth_dict['C_KEY'], auth_dict['C_SECRET'])
auth.set_access_token(auth_dict['A_KEY'], auth_dict['A_SECRET'])
api = tweepy.API(auth)
return api, auth
def open_stream(api, auth):
"""
Opens Twitter stream for data access.
"""
# Twitter streaming requires user to use OAuth. Tweepy has a listener
# that handles Twitter stream. I think this is how it must be instantiated.
listen = StreamNBAListener(api)
stream = tweepy.Stream(auth, listen)
return stream
def tweets_by_location(stream, coords, boxSize = 1):
"""
Return tweets in user-defined locations. Start with Dallas and
Miami for this project.
Twitter's statuses/filter method returns a stream of statuses
with user-specified filters. tweets_by_location() should be
used to sample statuses in a given area.
coord = list of coordinates provided as tuples
boxSize = size of box around city.
"""
# Read the doc string above: I should NOT filter on player names
# here. Use this method to develop a sample of tweets in a location.
# Twitter API takes long/lat pairs.
#
# From http://www.infoplease.com/ipa/A0001796.html:
# Dallas: center = -96.46, 32.46
# Miami: center = -80.12, 25.46
# USA: bounding box: -179.15, 18.91, -66.94, 71.44
boxes = ""
for x in coords:
c1 = (x[0] - boxSize / 2, x[1] - boxSize / 2)
c2 = (x[0] + boxSize / 2, x[1] + boxSize / 2)
box = (c1, c2)
for y in box:
boxes += str(y)
# What does a Tweepy stream return? Play around with this at home.
stream = open_stream(api)
stream.filter(locations = boxes)
sleep(1)