본문 바로가기

Minding's Baseball/MLB Statcast

[MLB Stats API] statsapi.game_highlights(gamePk)

728x90
반응형

[MLB Stats API] 파이썬 패키지로 MLB Stats API 사용해보기

 

[MLB Stats API] 파이썬 패키지로 MLB Stats API 사용해보기

Fangraph나 MLB savant 홈페이지에서 직접 csv, DB파일을 다운로드 받는 것이 아닌 MLB서버에 연결된 API로 손쉽게 데이터를 구할 수 있는 방법을 야구공작소 글을 보며 알게되었다. 그 중 파이썬으로 API

minding-deep-learning.tistory.com


  • 특정 경기의 하이라이트 영상 링크 가져오기
  • 경기에 따라 하이라이트 영상을 지원하지 않을수도 있음
# 예시 : game ID 632234의 경기하이라트 목록 가져오기 (BOS vs NATS)

print(statsapi.game_highlights(632234))
>>>
Joan Adon's first career K  (00:00:26)
Joan Adon strikes out Enrique Hernández swinging for his first career strikeout, recording the first out of the game 
https://mlb-cuts-diamond.mlb.com/FORGE/2021/2021-10/03/f8fee056-0f02f8f7-c38d16dc-csvm-diamondx64-asset_1280x720_59_4000K.mp4

Jordy Mercer's RBI double (00:00:50)
Jordy Mercer sends an RBI double to left field and Josh Bell scores, putting the Nationals on top 1-0 in the 2nd inning
https://mlb-cuts-diamond.mlb.com/FORGE/2021/2021-10/03/b4df659e-21d24a07-9556f3cf-csvm-diamondx64-asset_1280x720_59_4000K.mp4

...

Cora recaps the Red Sox's big win (00:06:01)
Alex Cora talks about how proud he is of his team, getting a Wild Card spot, J.D. Martinez's injury and Rafael Devers finding his groove again
https://mlb-cuts-diamond.mlb.com/FORGE/2021/2021-10/03/544689ce-6a20a511-8654aa28-csvm-diamondx64-asset_1280x720_59_4000K.mp4
728x90