wow, #polars is good - just read-from-url filter/select/unique super straightforward

#python

I like polars.col("Dataset") that's a good workaround for the lack of NSE

(aand, "filter' means what it means, as does "select" hurrah)

polars.md

GitHub Gist: instantly share code, notes, and snippets.

Gist

gawd what is up with this though, can't we just grab a column as list

d0 = d.slice(0, 10).select("source")
polars.Series(d0).to_list()

@mdsumner extracting a column as a list from polars feels like quitting vim from a newbies perspective.