Baselight

Curry Gamelogs With Nba Api

Scraping all Stephen Curry gamelogs using the Nba Api

@kaggle.enricofortunato_curry_gamelogs_with_nba_api

Allgamescurry
@kaggle.enricofortunato_curry_gamelogs_with_nba_api.allgamescurry

  • 46.06 KB
  • 762 rows
  • 28 columns
unnamed_0

Unnamed: 0

season_id

SEASON ID

player_id

Player ID

game_id

Game ID

game_date

GAME DATE

matchup

MATCHUP

wl

WL

min

MIN

fgm

FGM

fga

FGA

fg_pct

FG PCT

fg3m

FG3M

fg3a

FG3A

fg3_pct

FG3 PCT

ftm

FTM

fta

FTA

ft_pct

FT PCT

oreb

OREB

dreb

DREB

reb

REB

ast

AST

stl

STL

blk

BLK

tov

TOV

pf

PF

pts

PTS

plus_minus

PLUS MINUS

video_available

VIDEO AVAILABLE

2202020193922001070Sun May 16 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW vs. MEMW4016360.4449220.409560.8331679117246141
12202020193922001039Tue May 11 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW vs. PHXW377220.3181110.0916613361322161
22202020193922001030Mon May 10 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW vs. UTAW3711250.443130.23111120.91713462313641
32202020193922001017Sat May 08 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW vs. OKCW2914260.53811210.5241010155211249311
42202020193922001001Thu May 06 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW vs. OKCW3111210.5246130.462670.85744713234241
52202020193922000987Tue May 04 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW @ NOPL3713310.4198200.4331279234237-91
62202020193922000977Mon May 03 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW @ NOPW3514260.5388180.444560.83344814541191
72202020193922000958Sat May 01 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW @ HOUW309230.3917170.412570.7145551430251
82202020193922000946Thu Apr 29 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW @ MINL3711270.4076170.353991156823437-101
92202020193922000932Tue Apr 27 2021 00:00:00 GMT+0000 (Coordinated Universal Time)GSW vs. DALL309180.5590.55644111222127-271

CREATE TABLE allgamescurry (
  "unnamed_0" BIGINT,
  "season_id" BIGINT,
  "player_id" BIGINT,
  "game_id" BIGINT,
  "game_date" TIMESTAMP,
  "matchup" VARCHAR,
  "wl" VARCHAR,
  "min" BIGINT,
  "fgm" BIGINT,
  "fga" BIGINT,
  "fg_pct" DOUBLE,
  "fg3m" BIGINT,
  "fg3a" BIGINT,
  "fg3_pct" DOUBLE,
  "ftm" BIGINT,
  "fta" BIGINT,
  "ft_pct" DOUBLE,
  "oreb" BIGINT,
  "dreb" BIGINT,
  "reb" BIGINT,
  "ast" BIGINT,
  "stl" BIGINT,
  "blk" BIGINT,
  "tov" BIGINT,
  "pf" BIGINT,
  "pts" BIGINT,
  "plus_minus" BIGINT,
  "video_available" BIGINT
);

Share link

Anyone who has the link will be able to view this.