-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
444 lines (368 loc) · 18.5 KB
/
app.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
##### IMPORTS #####
import os
import json
import datetime
import requests
from urllib.parse import urlencode
from urllib.request import Request, urlopen
from flask import Flask, request
##### VARIABLES #####
app = Flask(__name__)
bot_id = 'your-bot-id'
league_id = 'your-espn-league-id'
base_url = 'https://fantasy.espn.com/apis/v3/'
current_year = str(datetime.datetime.now().year)
current_season_endpoint = 'games/ffl/seasons/'+current_year+'/segments/0/leagues/'+league_id+'?view=mMatchupScore&view=mTeam&view=mSettings'
historic_season_endpoint = 'games/ffl/leagueHistory/'+league_id+'?view=mLiveScoring&view=mMatchupScore&view=mRoster&view=mSettings&view=mStandings&view=mStatus&view=mTeam&view=modular&view=mNav&seasonId='
private_league = False # Set to True and define below cookies to use with Private leagues. For more info visit: https://stmorse.github.io/journal/espn-fantasy-3-python.html
swid_cookie = ''
espn_s2_cookie = ''
##### MAIN CALLBACK #####
@app.route('/', methods=['POST'])
def webhook():
# Get the message sent in the GroupMe
message = request.get_json()
# Only respond to messages from real users
if not sender_is_bot(message):
# INFORMATION COMMANDS
if '$help' in message['text'].lower():
reply(getBotHelpInformation())
if '$league' in message['text'].lower():
reply(getLeagueInformation())
# POWER RANK COMMANDS
if '$current-ranks' in message['text'].lower():
reply(getCurrentLeaguePowerRanks())
if '$2020-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2020'))
if '$2019-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2019'))
if '$2018-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2018'))
if '$2017-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2017'))
if '$2016-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2016'))
if '$2015-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2015'))
if '$2014-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2014'))
if '$2013-ranks' in message['text'].lower():
reply(getHistoricalLeaguePowerRanks('2013'))
# POINTS FOR COMMANDS
if '$current-points-for' in message['text'].lower():
reply(getCurrentPointsForRankings())
if '$2020-pf' in message['text'].lower():
reply(getHistoricalPointsForRankings('2020'))
if '$2019-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2019'))
if '$2018-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2018'))
if '$2017-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2017'))
if '$2016-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2016'))
if '$2015-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2015'))
if '$2014-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2014'))
if '$2013-points-for' in message['text'].lower():
reply(getHistoricalPointsForRankings('2013'))
# POINTS AGAINST COMMANDS
if '$current-points-against' in message['text'].lower():
reply(getCurrentPointsAgainstRankings())
if '$2020-pa' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2020'))
if '$2019-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2019'))
if '$2018-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2018'))
if '$2017-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2017'))
if '$2016-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2016'))
if '$2015-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2015'))
if '$2014-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2014'))
if '$2013-points-against' in message['text'].lower():
reply(getHistoricalPointsAgainstRankings('2013'))
return "ok", 200
##### REPLY FUNCTIONS #####
def reply(msg):
url = "https://api.groupme.com/v3/bots/post"
payload={"text": msg, "bot_id": bot_id}
payload_string = json.dumps(payload)
response = requests.post(url, data=payload_string)
def reply_with_image(msg, imgURL):
# Send a message with an image
url = 'https://api.groupme.com/v3/bots/post'
urlOnGroupMeService = upload_image_to_groupme(imgURL)
data = {
'bot_id' : bot_id,
'text' : msg,
'picture_url' : urlOnGroupMeService
}
request = Request(url, urlencode(data).encode())
json = urlopen(request).read().decode()
def upload_image_to_groupme(imgURL):
# Upload a message to the group
imgRequest = requests.get(imgURL, stream=True)
filename = 'temp.png'
postImage = None
if imgRequest.status_code == 200:
# Save Image
with open(filename, 'wb') as image:
for chunk in imgRequest:
image.write(chunk)
# Send Image
headers = {'content-type': 'application/json'}
url = 'https://image.groupme.com/pictures'
files = {'file': open(filename, 'rb')}
payload = {'access_token': 'eo7JS8SGD49rKodcvUHPyFRnSWH1IVeZyOqUMrxU'}
r = requests.post(url, files=files, params=payload)
imageurl = r.json()['payload']['url']
os.remove(filename)
return imageurl
##### HELPER FUNCTIONS #####
def sender_is_bot(message):
return message['sender_type'] == "bot"
def formatResponseForGroupMe(data):
formatted_data = data
return formatted_data
def formatEpochTimeToReadable(data):
# Converts Javascript epoch time to readable date format
readable_date = datetime.datetime.fromtimestamp((data/1000))
return readable_date
def getTeamOwnerName(owner_hash, owners):
# Gets the team owners full name using the team id
for owner in owners:
if owner_hash == owner.get('id'):
return owner.get('firstName')+ ' ' +owner.get('lastName')
def getTotalLeaguePointsForSeason(teams):
# Get the total points for all teams combined in a season
total_league_points = 0
for team in teams:
total_league_points = total_league_points + round(team.get('record').get('overall').get('pointsFor'), 2)
return total_league_points
##### FF FUNCTIONS #####
def getBotHelpInformation():
# Returns the commands available for the bot
data = [['$help', 'show commands'], ['$league', 'show league info'],
['\n#### CURRENT SEASON ####', ''],
['$current-pf', 'points for'], ['$current-pa', 'points against'],
['$current-ranks', 'ESPN ranks'],
['\n#### HISTORICAL SEASONS ####', ''],
['$[year]-pf', 'points for'], ['$[year]-pa', 'points against'],
['$[year]-ranks', 'ESPN ranks']]
formatted_string = "#### AVAILABLE COMMANDS ####\n"
col_width = max(len(word) for row in data for word in row) + 2
for row in data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n'
out = formatted_string
return out
def getLeagueInformation():
# Returns the leagues general information
if (private_league == True):
# Private leagues need cookies added to request
response = requests.get(url=base_url+current_season_endpoint, verify=False, cookies={'swid': swid_cookie, 'espn_s2': espn_s2_cookie}).json()
else:
# Public leagues are fine without cookies
response = requests.get(url=base_url+current_season_endpoint, verify=False).json()
if response:
league_name = response.get('settings').get('name')
player_score_type = str(response.get('settings').get('scoringSettings').get('playerRankType'))
league_creation_year = str(response.get('status').get('previousSeasons')[0])
league_owner_count = str(response.get('status').get('teamsJoined'))
header = "#### LEAGUE INFO ####\n"
first_line = league_name + " " + league_owner_count + " person " + player_score_type + " league \n"
second_line = 'League Founded: ' + league_creation_year + '\n'
# Make sure to change your league champion each year. ESPN doesn't provide previous year winner as of now.
third_line = 'Current Champion: Joshua Bailey \n' # Update this
fourth_line = 'Total League points: ' + str(getTotalLeaguePointsForSeason(response.get('teams')))
out = header + first_line + second_line + third_line + fourth_line
else:
out = 'An error has occurred while retrieving from the API.'
return out
def getCurrentLeaguePowerRanks():
# Returns the current overall league power ranks
league_data = []
formatted_string = ""
if (private_league == True):
# Private leagues need cookies added to request
response = requests.get(url=base_url+current_season_endpoint, verify=False, cookies={'swid': swid_cookie, 'espn_s2': espn_s2_cookie}).json()
else:
# Public leagues are fine without cookies
response = requests.get(url=base_url+current_season_endpoint, verify=False).json()
if response:
teams = response.get('teams')
owners = response.get('members')
# create and add team object to list
for team in teams:
team_data = [str(team.get('currentProjectedRank')), str(getTeamOwnerName(team.get('primaryOwner'), owners)), str(team.get('record').get('overall').get('wins')) + '-' + str(team.get('record').get('overall').get('losses')) + '-' + str(team.get('record').get('overall').get('ties'))]
league_data.append(team_data)
# order the rankings, take first element for sort
def takeFirst(elem):
return elem[0]
# fix for 10,11,12 in sort -> append to end
# adjust this code block if your league is < 12 members, or remove entirely if < 10
league_data.sort(key=takeFirst)
league_data_slice = league_data[1:4]
league_data += league_data_slice
del league_data[1:4]
# output the rankings
formatted_string = "#### POWER RANKINGS ####\n"
col_width = max(len(word) for row in league_data for word in row) + 2 # padding
for row in league_data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n' # this outputs the row
out = formatted_string
else:
out = 'An error has occurred while retrieving from the API.'
return out
def getHistoricalLeaguePowerRanks(year):
# Returns the current overall league power ranks
league_data = []
formatted_string = ""
response = requests.get(url=base_url+historic_season_endpoint+year, verify=False).json()
if response:
teams = response[0].get('teams')
owners = response[0].get('members')
# create and add team object to list
for team in teams:
team_data = [str(team.get('rankCalculatedFinal')), str(getTeamOwnerName(team.get('primaryOwner'), owners)), str(team.get('record').get('overall').get('wins')) + '-' + str(team.get('record').get('overall').get('losses')) + '-' + str(team.get('record').get('overall').get('ties'))]
league_data.append(team_data)
# order the rankings, take first element for sort
def takeFirst(elem):
return elem[0]
# fix for 10,11,12 in sort -> append to end
# adjust this code block if your league is < 12 members, or remove entirely if < 10
league_data.sort(key=takeFirst)
league_data_slice = league_data[1:4]
league_data += league_data_slice
del league_data[1:4]
# output the rankings
formatted_string = "#### "+ year +" POWER RANKINGS ####\n"
col_width = max(len(word) for row in league_data for word in row) + 2 # padding
for row in league_data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n' # this outputs the row
out = formatted_string
else:
out = 'An error has occurred while retrieving from the API.'
return out
def getCurrentPointsForRankings():
# Returns the current overall league rankings for 'points for'
league_data = []
formatted_string = ""
if (private_league == True):
# Private leagues need cookies added to request
response = requests.get(url=base_url+current_season_endpoint, verify=False, cookies={'swid': swid_cookie, 'espn_s2': espn_s2_cookie}).json()
else:
# Public leagues are fine without cookies
response = requests.get(url=base_url+current_season_endpoint, verify=False).json()
if response:
teams = response.get('teams')
owners = response.get('members')
# create and add team object to list
for team in teams:
team_data = [str(getTeamOwnerName(team.get('primaryOwner'), owners)), str(round(team.get('record').get('overall').get('pointsFor'), 2))]
league_data.append(team_data)
# order the rankings and add the numbering
league_data.sort(key = lambda x: float(x[1]), reverse=True)
rank = 1
for team in league_data:
team.insert(0, str(rank))
rank += 1
# output the rankings
formatted_string = "#### POINTS FOR ####\n"
col_width = max(len(word) for row in league_data for word in row) + 2 # padding
for row in league_data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n' # this outputs the row
out = formatted_string
else:
out = 'An error has occurred while retrieving from the API.'
return out
def getHistoricalPointsForRankings(year):
# Returns the historical league rankings for 'points for' by season
league_data = []
formatted_string = ""
response = requests.get(url=base_url+historic_season_endpoint+year, verify=False).json()
if response:
teams = response.get('teams')
owners = response.get('members')
# create and add team object to list
for team in teams:
team_data = [str(getTeamOwnerName(team.get('primaryOwner'), owners)), str(round(team.get('record').get('overall').get('pointsFor'), 2))]
league_data.append(team_data)
# order the rankings and add the numbering
league_data.sort(key = lambda x: float(x[1]), reverse=True)
rank = 1
for team in league_data:
team.insert(0, str(rank))
rank += 1
# output the rankings
formatted_string = "#### "+ year +" POINTS FOR ####\n"
col_width = max(len(word) for row in league_data for word in row) + 2 # padding
for row in league_data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n' # this outputs the row
out = formatted_string
else:
out = 'An error has occurred while retrieving from the API.'
return out
def getCurrentPointsAgainstRankings():
# Returns the current overall league rankings for 'points against'
league_data = []
formatted_string = ""
if (private_league == True):
# Private leagues need cookies added to request
response = requests.get(url=base_url+current_season_endpoint, verify=False, cookies={'swid': swid_cookie, 'espn_s2': espn_s2_cookie}).json()
else:
# Public leagues are fine without cookies
response = requests.get(url=base_url+current_season_endpoint, verify=False).json()
if response:
teams = response.get('teams')
owners = response.get('members')
# create and add team object to list
for team in teams:
team_data = [str(getTeamOwnerName(team.get('primaryOwner'), owners)), str(round(team.get('record').get('overall').get('pointsAgainst'), 2))]
league_data.append(team_data)
# order the rankings and add the numbering
league_data.sort(key = lambda x: float(x[1]), reverse=True)
rank = 1
for team in league_data:
team.insert(0, str(rank))
rank += 1
# output the rankings
formatted_string = "#### POINTS AGAINST ####\n"
col_width = max(len(word) for row in league_data for word in row) + 2 # padding
for row in league_data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n' # this outputs the row
out = formatted_string
else:
out = 'An error has occurred while retrieving from the API.'
return out
def getHistoricalPointsAgainstRankings(year):
# Returns the current overall league rankings for 'points against'
league_data = []
formatted_string = ""
response = requests.get(url=base_url+historic_season_endpoint+year, verify=False).json()
if response:
teams = response.get('teams')
owners = response.get('members')
# create and add team object to list
for team in teams:
team_data = [str(getTeamOwnerName(team.get('primaryOwner'), owners)), str(round(team.get('record').get('overall').get('pointsAgainst'), 2))]
league_data.append(team_data)
# order the rankings and add the numbering
league_data.sort(key = lambda x: float(x[1]), reverse=True)
rank = 1
for team in league_data:
team.insert(0, str(rank))
rank += 1
# output the rankings
formatted_string = "#### "+ year +" POINTS AGAINST ####\n"
col_width = max(len(word) for row in league_data for word in row) + 2 # padding
for row in league_data:
formatted_string += "".join(word.ljust(col_width) for word in row) + '\n' # this outputs the row
out = formatted_string
else:
out = 'An error has occurred while retrieving from the API.'
return out