import polars as pl
df = pl.read_csv("https://raw.githubusercontent.com/razoumov/publish/master/jeopardy.csv")
print(df)shape: (216_930, 7)
┌─────────────┬──────────┬───────────┬─────────────────┬─────────┬────────────────┬────────────────┐
│ Show Number ┆ Air Date ┆ Round     ┆ Category        ┆ Value   ┆ Question       ┆ Answer         │
│ ---         ┆ ---      ┆ ---       ┆ ---             ┆ ---     ┆ ---            ┆ ---            │
│ i64         ┆ str      ┆ str       ┆ str             ┆ str     ┆ str            ┆ str            │
╞═════════════╪══════════╪═══════════╪═════════════════╪═════════╪════════════════╪════════════════╡
│ 4680        ┆ 12/31/04 ┆ Jeopardy! ┆ HISTORY         ┆ $200    ┆ For the last 8 ┆ Copernicus     │
│             ┆          ┆           ┆                 ┆         ┆ years of his   ┆                │
│             ┆          ┆           ┆                 ┆         ┆ li…            ┆                │
│ 4680        ┆ 12/31/04 ┆ Jeopardy! ┆ ESPN's TOP 10   ┆ $200    ┆ No. 2: 1912    ┆ Jim Thorpe     │
│             ┆          ┆           ┆ ALL-TIME        ┆         ┆ Olympian;      ┆                │
│             ┆          ┆           ┆ ATHLETE…        ┆         ┆ football…      ┆                │
│ 4680        ┆ 12/31/04 ┆ Jeopardy! ┆ EVERYBODY TALKS ┆ $200    ┆ The city of    ┆ Arizona        │
│             ┆          ┆           ┆ ABOUT IT...     ┆         ┆ Yuma in this   ┆                │
│             ┆          ┆           ┆                 ┆         ┆ state…         ┆                │
│ 4680        ┆ 12/31/04 ┆ Jeopardy! ┆ THE COMPANY     ┆ $200    ┆ In 1963, live  ┆ McDonald's     │
│             ┆          ┆           ┆ LINE            ┆         ┆ on "The Art    ┆                │
│             ┆          ┆           ┆                 ┆         ┆ Link…          ┆                │
│ 4680        ┆ 12/31/04 ┆ Jeopardy! ┆ EPITAPHS &      ┆ $200    ┆ Signer of the  ┆ John Adams     │
│             ┆          ┆           ┆ TRIBUTES        ┆         ┆ Dec. of        ┆                │
│             ┆          ┆           ┆                 ┆         ┆ Indep., …      ┆                │
│ …           ┆ …        ┆ …         ┆ …               ┆ …       ┆ …              ┆ …              │
│ 4999        ┆ 5/11/06  ┆ Double    ┆ RIDDLE ME THIS  ┆ $2,000  ┆ This Puccini   ┆ Turandot       │
│             ┆          ┆ Jeopardy! ┆                 ┆         ┆ opera turns on ┆                │
│             ┆          ┆           ┆                 ┆         ┆ th…            ┆                │
│ 4999        ┆ 5/11/06  ┆ Double    ┆ "T" BIRDS       ┆ $2,000  ┆ In North       ┆ a titmouse     │
│             ┆          ┆ Jeopardy! ┆                 ┆         ┆ America this   ┆                │
│             ┆          ┆           ┆                 ┆         ┆ term is …      ┆                │
│ 4999        ┆ 5/11/06  ┆ Double    ┆ AUTHORS IN      ┆ $2,000  ┆ In Penny Lane, ┆ Clive Barker   │
│             ┆          ┆ Jeopardy! ┆ THEIR YOUTH     ┆         ┆ where this     ┆                │
│             ┆          ┆           ┆                 ┆         ┆ "Hel…          ┆                │
│ 4999        ┆ 5/11/06  ┆ Double    ┆ QUOTATIONS      ┆ $2,000  ┆ From Ft. Sill, ┆ Geronimo       │
│             ┆          ┆ Jeopardy! ┆                 ┆         ┆ Okla. he made  ┆                │
│             ┆          ┆           ┆                 ┆         ┆ t…             ┆                │
│ 4999        ┆ 5/11/06  ┆ Final     ┆ HISTORIC NAMES  ┆ None    ┆ A silent movie ┆ Grigori        │
│             ┆          ┆ Jeopardy! ┆                 ┆         ┆ title includes ┆ Alexandrovich  │
│             ┆          ┆           ┆                 ┆         ┆ …              ┆ Potemkin       │
└─────────────┴──────────┴───────────┴─────────────────┴─────────┴────────────────┴────────────────┘