Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Paupergeddon Decklists

Structured decklists from Paupergeddon tournaments in the Pauper format.

Each row is one decklist. Mainboard and sideboard cards are stored as structured lists of quantity and card pairs, parsed from tournament decklist text files grouped by archetype.

Dataset structure

Column Type Description
id string Unique decklist id, e.g. summer_2026_42
tournament string Tournament id, e.g. 2026_summer
day2 bool true if the list comes from day 2
archetype string Archetype label, e.g. Dimir_Faeries
mainboard list Maindeck cards as {quantity, card} records
sideboard list Sideboard cards as {quantity, card} records

Splits

Split Tournament Decklists
2026_spring Paupergeddon Spring 2026 1,091
2026_summer Paupergeddon Summer 2026 1,219

Day 1 lists include all submitted decklists. Day 2 lists contain decks that made the cut.

Load from Hugging Face

from datasets import load_dataset

repo_id = "vedalken/paupergeddon-decklists"

spring = load_dataset(repo_id, split="2026_spring")

print(spring[0]["archetype"], spring[0]["mainboard"])

Load one split as a pandas DataFrame:

from datasets import load_dataset

ds = load_dataset("vedalken/paupergeddon-decklists", split="2026_summer")
df = ds.to_pandas()
print(df.shape)
print(df.loc[0, "archetype"])
print(df.loc[0, "mainboard"])

Each decklists are pauper legal and tournament playable.

Downloads last month
-