-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsensor.yaml
579 lines (578 loc) · 11.9 KB
/
sensor.yaml
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
##
## NFL Standings
##
- platform: rest
scan_interval: 36000
name: NFL Standings
unique_id: sensor.nfl_standings
resource: https://site.web.api.espn.com/apis/v2/sports/football/nfl/standings?seasontype=2&type=0&level=3
value_template: "{{ now() }}"
json_attributes:
- children
##
## NHL Standings
##
- platform: rest
scan_interval: 36000
name: NHL Standings
unique_id: sensor.nhl_standings
resource: https://site.web.api.espn.com/apis/v2/sports/hockey/nhl/standings?seasontype=2&type=0&level=3
value_template: "{{ now() }}"
json_attributes:
- children
##
## NHL Wildcard
##
- platform: rest
scan_interval: 36000
name: NHL Wildcard
unique_id: sensor.nhl_wildcard
resource: https://site.web.api.espn.com/apis/v2/sports/hockey/nhl/standings?region=us&lang=en&contentorigin=espn&type=3&level=2&sort=playoffseed%3Aasc%2Cpoints%3Adesc%2Cgamesplayed%3Aasc%2Crotwins%3Adesc&seasontype=2
value_template: "{{ now() }}"
json_attributes:
- children
- overall
##
## MLB Standings
##
- platform: rest
scan_interval: 36000
name: MLB Standings
unique_id: sensor.mlb_standings
resource: https://site.web.api.espn.com/apis/v2/sports/baseball/mlb/standings?seasontype=2&type=0&level=3
value_template: "{{ now() }}"
json_attributes:
- children
##
## NBA Standings
##
- platform: rest
scan_interval: 36000
name: NBA Standings
unique_id: sensor.nba_standings
resource: https://site.web.api.espn.com/apis/v2/sports/basketball/nba/standings?seasontype=2&type=0&level=3
value_template: "{{ now() }}"
json_attributes:
- children
##
## NFL Teams
##
- platform: teamtracker
league_id: NFL
team_id: DET
name: Detroit Lions
- platform: teamtracker
league_id: NFL
team_id: GB
name: Green Bay
- platform: teamtracker
league_id: NFL
team_id: CHI
name: Chicago Bears
- platform: teamtracker
league_id: NFL
team_id: MIN
name: Minnesota Vikings
- platform: teamtracker
league_id: NFL
team_id: BUF
name: Buffalo Bills
- platform: teamtracker
league_id: NFL
team_id: MIA
name: Miami Dolphins
- platform: teamtracker
league_id: NFL
team_id: NE
name: New England Patriots
- platform: teamtracker
league_id: NFL
team_id: NYJ
name: New York Jets
- platform: teamtracker
league_id: NFL
team_id: DAL
name: Dallas Cowboys
- platform: teamtracker
league_id: NFL
team_id: NYG
name: New York Giants
- platform: teamtracker
league_id: NFL
team_id: PHI
name: Philadelphia Eagles
- platform: teamtracker
league_id: NFL
team_id: WSH
name: Washington Commanders
- platform: teamtracker
league_id: NFL
team_id: BAL
name: Baltimore Ravens
- platform: teamtracker
league_id: NFL
team_id: CIN
name: Cincinnati Bengals
- platform: teamtracker
league_id: NFL
team_id: CLE
name: Cleveland Browns
- platform: teamtracker
league_id: NFL
team_id: PIT
name: Pittsburg Steelers
- platform: teamtracker
league_id: NFL
team_id: HOU
name: Houston Texans
- platform: teamtracker
league_id: NFL
team_id: IND
name: Indianapolis Colts
- platform: teamtracker
league_id: NFL
team_id: JAX
name: Jacksonville Jaguars
- platform: teamtracker
league_id: NFL
team_id: TEN
name: Tennessee Titans
- platform: teamtracker
league_id: NFL
team_id: ATL
name: Atlanta Falcons
- platform: teamtracker
league_id: NFL
team_id: CAR
name: Carolina Panthers
- platform: teamtracker
league_id: NFL
team_id: "NO"
name: New Orleans Saints
- platform: teamtracker
league_id: NFL
team_id: TB
name: Tampa Bay Buccaneers
- platform: teamtracker
league_id: NFL
team_id: DEN
name: Denver Broncos
- platform: teamtracker
league_id: NFL
team_id: KC
name: Kansas City Chiefs
- platform: teamtracker
league_id: NFL
team_id: LV
name: Las Vegas Raiders
- platform: teamtracker
league_id: NFL
team_id: LAC
name: Los Angeles Chargers
- platform: teamtracker
league_id: NFL
team_id: ARI
name: Arizona Cardinals
- platform: teamtracker
league_id: NFL
team_id: LAR
name: Los Angeles Rams
- platform: teamtracker
league_id: NFL
team_id: SF
name: "San Francisco 49ers"
- platform: teamtracker
league_id: NFL
team_id: SEA
name: Seattle Seahawks
##
## NHL Teams
##
- platform: teamtracker
league_id: NHL
team_id: DET
name: Detroit Red Wings
- platform: teamtracker
league_id: NHL
team_id: NSH
name: Nashville Predators
- platform: teamtracker
league_id: NHL
team_id: FLA
name: Florida Panthers
- platform: teamtracker
league_id: NHL
team_id: STL
name: St Louis Blues
- platform: teamtracker
league_id: NHL
team_id: COL
name: Colorado Avalanche
- platform: teamtracker
league_id: NHL
team_id: BOS
name: Boston Bruins
- platform: teamtracker
league_id: NHL
team_id: NYI
name: New York Islanders
- platform: teamtracker
league_id: NHL
team_id: PIT
name: Pittsburg Penguins
- platform: teamtracker
league_id: NHL
team_id: NJ
name: New Jersey Devils
- platform: teamtracker
league_id: NHL
team_id: DAL
name: Dallas Stars
- platform: teamtracker
league_id: NHL
team_id: CBJ
name: Columbus Blue Jackets
- platform: teamtracker
league_id: NHL
team_id: TOR
name: Toronto Maple Leafs
- platform: teamtracker
league_id: NHL
team_id: MTL
name: Montreal Canadians
- platform: teamtracker
league_id: NHL
team_id: CAR
name: Carolina Hurricanes
- platform: teamtracker
league_id: NHL
team_id: WSH
name: Washington Senators
- platform: teamtracker
league_id: NHL
team_id: CGY
name: Calgary Flames
- platform: teamtracker
league_id: NHL
team_id: NYR
name: New York Rangers
- platform: teamtracker
league_id: NHL
team_id: VAN
name: Vancouver Canucks
- platform: teamtracker
league_id: NHL
team_id: PHI
name: Philadelphia Fylers
- platform: teamtracker
league_id: NHL
team_id: LA
name: Los Angeles Kings
- platform: teamtracker
league_id: NHL
team_id: ARI
name: Arizona Coyotes
- platform: teamtracker
league_id: NHL
team_id: SJ
name: San Jose Sharks
- platform: teamtracker
league_id: NHL
team_id: BUF
name: Buffalo Sabres
- platform: teamtracker
league_id: NHL
team_id: SEA
name: Seattle Kraken
- platform: teamtracker
league_id: NHL
team_id: VGK
name: Los Vegas Golden Knights
- platform: teamtracker
league_id: NHL
team_id: TB
name: Tampa Bay Lightning
- platform: teamtracker
league_id: NHL
team_id: OTT
name: Ottawa Senators
- platform: teamtracker
league_id: NHL
team_id: WPG
name: Winnipeg Jets
- platform: teamtracker
league_id: NHL
team_id: EDM
name: Edmonton Oilers
- platform: teamtracker
league_id: NHL
team_id: MIN
name: Minnesota Wild
- platform: teamtracker
league_id: NHL
team_id: ANA
name: Anaheim Ducks
- platform: teamtracker
league_id: NHL
team_id: CHI
name: Chicago Blackhawks
##
## MLB Teams
##
- platform: teamtracker
league_id: MLB
team_id: LAA
name: Los Angeles Angels
- platform: teamtracker
league_id: MLB
team_id: CHW
name: Chicago White Sox
- platform: teamtracker
league_id: MLB
team_id: CLE
name: Cleveland Guardians
- platform: teamtracker
league_id: MLB
team_id: KC
name: Kansas City Royals
- platform: teamtracker
league_id: MLB
team_id: MIL
name: Milwaukee Brewers
- platform: teamtracker
league_id: MLB
team_id: OAK
name: Oakland Athletics
- platform: teamtracker
league_id: MLB
team_id: SEA
name: Seattle Mariners
- platform: teamtracker
league_id: MLB
team_id: TEX
name: Texas Rangers
- platform: teamtracker
league_id: MLB
team_id: CHC
name: Chicago Cubs
- platform: teamtracker
league_id: MLB
team_id: CIN
name: Cincinnati Reds
- platform: teamtracker
league_id: MLB
team_id: LAD
name: Los Angeles Dodgers
- platform: teamtracker
league_id: MLB
team_id: SD
name: San Diego Padres
- platform: teamtracker
league_id: MLB
team_id: SF
name: San Francisco Giants
- platform: teamtracker
league_id: MLB
team_id: COL
name: Colorado Rockies
- platform: teamtracker
league_id: MLB
team_id: ARI
name: Arizona Diamondbacks
- platform: teamtracker
league_id: MLB
team_id: BAL
name: Baltimore Orioles
- platform: teamtracker
league_id: MLB
team_id: BOS
name: Boston Red Sox
- platform: teamtracker
league_id: MLB
team_id: DET
name: Detroit Tigers
- platform: teamtracker
league_id: MLB
team_id: MIN
name: Minnesota Twins
- platform: teamtracker
league_id: MLB
team_id: NYY
name: New York Yankees
- platform: teamtracker
league_id: MLB
team_id: TOR
name: Toronto Blue Jays
- platform: teamtracker
league_id: MLB
team_id: ATL
name: Atlanta Braves
- platform: teamtracker
league_id: MLB
team_id: HOU
name: Houston Astros
- platform: teamtracker
league_id: MLB
team_id: WSH
name: Washington Nationals
- platform: teamtracker
league_id: MLB
team_id: NYM
name: New York Mets
- platform: teamtracker
league_id: MLB
team_id: PHI
name: Philadelphia Phillies
- platform: teamtracker
league_id: MLB
team_id: PIT
name: Pittsburgh Pirates
- platform: teamtracker
league_id: MLB
team_id: STL
name: St. Louis Cardinals
- platform: teamtracker
league_id: MLB
team_id: MIA
name: Miami Marlins
- platform: teamtracker
league_id: MLB
team_id: TB
name: Tampa Bay Rays
##
## NBA Teams
##
- platform: teamtracker
league_id: NBA
team_id: TOR
name: Toronto Raptors
- platform: teamtracker
league_id: NBA
team_id: BKN
name: Brooklyn Nets
- platform: teamtracker
league_id: NBA
team_id: NY
name: New York Knicks
- platform: teamtracker
league_id: NBA
team_id: PHI
name: Philadelphia 76ers
- platform: teamtracker
league_id: NBA
team_id: BOS
name: Boston Celtics
- platform: teamtracker
league_id: NBA
team_id: DET
name: Detroit Pistons
- platform: teamtracker
league_id: NBA
team_id: IND
name: Indiana Pacers
- platform: teamtracker
league_id: NBA
team_id: CHI
name: Chicago Bulls
- platform: teamtracker
league_id: NBA
team_id: CLE
name: Cleveland Cavaliers
- platform: teamtracker
league_id: NBA
team_id: MIL
name: Milwaukee Bucks
- platform: teamtracker
league_id: NBA
team_id: CHA
name: Charlotte Hornets
- platform: teamtracker
league_id: NBA
team_id: ORL
name: Orlando Magic
- platform: teamtracker
league_id: NBA
team_id: WSH
name: Washington Wizards
- platform: teamtracker
league_id: NBA
team_id: ATL
name: Atlanta Hawks
- platform: teamtracker
league_id: NBA
team_id: MIA
name: Miami Heat
- platform: teamtracker
league_id: NBA
team_id: UTAH
name: Utah Jazz
- platform: teamtracker
league_id: NBA
team_id: OKC
name: Oklahoma City Thunder
- platform: teamtracker
league_id: NBA
team_id: POR
name: Portland Trail Blazers
- platform: teamtracker
league_id: NBA
team_id: MIN
name: Minnesota Timberwolves
- platform: teamtracker
league_id: NBA
team_id: DEN
name: Denver Nuggets
- platform: teamtracker
league_id: NBA
team_id: LAL
name: Los Angeles Lakers
- platform: teamtracker
league_id: NBA
team_id: LAC
name: LA Clippers
- platform: teamtracker
league_id: NBA
team_id: GS
name: Golden State Warriors
- platform: teamtracker
league_id: NBA
team_id: PHX
name: Phoenix Suns
- platform: teamtracker
league_id: NBA
team_id: SAC
name: Sacramento Kings
- platform: teamtracker
league_id: NBA
team_id: HOU
name: Houston Rockets
- platform: teamtracker
league_id: NBA
team_id: SA
name: San Antonio Spurs
- platform: teamtracker
league_id: NBA
team_id: NO
name: New Orleans Pelicans
- platform: teamtracker
league_id: NBA
team_id: DAL
name: Dallas Mavericks
- platform: teamtracker
league_id: NBA
team_id: MEM
name: Memphis Grizzlies
##
## Starting Goalies
##
## NOTE: At this time this does not work as expected. The resource link changes daily and you need to get the new link from the site.
## Currenty looking at alternatives
##
- platform: rest
name: nhl_starting_goalies
scan_interval: 3600
resource: https://www.dailyfaceoff.com/_next/data/q_XkeY-XNmz9svQccaln1/starting-goalies.json
value_template: "{{ value_json.pageProps.date }}"
json_attributes_path: "$.pageProps"
json_attributes:
- data