Baselight

GM Chess Games On Chess.com

Lightweight chess.com GM games dataset (from 05-2008 to 02-2024)

@kaggle.grgoirepelletier_6_2m_chess_games

Loading...
Loading...

About this Dataset

GM Chess Games On Chess.com

This dataset contains all chess games played by Grandmaster titled players at chess.com (n= 6,113,917).

The data were scraped from chess.com API and using this dataset as a base :
https://www.kaggle.com/datasets/dimitrioskourtikakis/gm-games-chesscom

The data were scraped and processed following the notebook you can find at :
https://github.com/GregoirePelletier/Chess_games-ML

About Dataset:
This dataset contains over 6 million chess games from chess.com.

It is contained in two CSV files:

A larger, more complete file with 16 columns and a lighter file with 11 columns including:

  • Link = the url for each game (only in full.csv)
  • Event = type of event
  • Site = chess.com
  • Date = date of each game
  • White = white player's username
  • Black = black player's username
  • Result = game result
  • BlackElo = black player's rating
  • ECO = opening's ECO code
  • ECOUrl = opening name (only in full.csv)
  • EndDate = date when game was finished (only in full.csv)
  • EndTime = time when game was finished
  • Termination = result type (only in full.csv)
  • TimeControl = time per player
  • WhiteElo = white player's rating

Tables

Full

@kaggle.grgoirepelletier_6_2m_chess_games.full
  • 180.9 MB
  • 5399645 rows
  • 16 columns
Loading...

CREATE TABLE full (
  "unnamed_0" BIGINT,
  "link" VARCHAR,
  "event" VARCHAR,
  "site" VARCHAR,
  "date" TIMESTAMP,
  "white" VARCHAR,
  "black" VARCHAR,
  "result" VARCHAR,
  "blackelo" BIGINT,
  "eco" VARCHAR,
  "ecourl" VARCHAR,
  "enddate" TIMESTAMP,
  "endtime" VARCHAR,
  "termination" VARCHAR,
  "timecontrol" VARCHAR,
  "whiteelo" BIGINT
);

Light

@kaggle.grgoirepelletier_6_2m_chess_games.light
  • 94.86 MB
  • 5399645 rows
  • 11 columns
Loading...

CREATE TABLE light (
  "unnamed_0" BIGINT,
  "event" VARCHAR,
  "date" TIMESTAMP,
  "endtime" VARCHAR,
  "timecontrol" VARCHAR,
  "white" VARCHAR,
  "black" VARCHAR,
  "whiteelo" BIGINT,
  "blackelo" BIGINT,
  "eco" VARCHAR,
  "result" VARCHAR
);

Share link

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