Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 684 Bytes

QUICKSTART.md

File metadata and controls

37 lines (26 loc) · 684 Bytes

🚀 Quickstart

🦆 Get DuckDB

brew install duckdb

😜 For impatients

duckdb -c 'SELECT * from read_csv_auto("https://raw.githubusercontent.com/adriens/endoflife-date-snapshots/main/data/details-with-headers.csv");'

🤵 For the others

pip install --upgrade kaggle

Then get the full database:

kaggle kernels output adriensales/endoflife-date-database-export -p endoflife-date-exports
cd endoflife-date-exports
ls -ltr
clear
echo "ℹ️  Available tables"
duckdb endoflife.date.duckdb -c 'show tables;'
echo "🚀 Get some data"
duckdb endoflife.date.duckdb -c 'select * from details limit 10;'