adriens / auptitcafe-data

Menus historisés du restaurant "Au p'tit café" , Nouméa, Nouvelle-Calédonie

Home Page:https://dev.to/adriens/series/23071

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xc compatible

auptitcafe-data

Data historisées

🦆 Play with SQL in duckdb

Current menu

install httpfs;
select *
from 'https://raw.githubusercontent.com/adriens/auptitcafe-data/main/data/current_menus_headers.csv';

🐚 Shell (bash, zsh)

duckdb << EOF
install httpfs;
select * from 'https://raw.githubusercontent.com/adriens/auptitcafe-data/main/data/current_menus_headers.csv' ;
EOF

Tasks

current

Display the current menu data

duckdb << EOF
install httpfs;
select titre_plat as "Plat",
    prix as "Prix",
    category as "Category",
    recette as "Recette"
from 'https://raw.githubusercontent.com/adriens/auptitcafe-data/main/data/current_menus_headers.csv';
EOF

About

Menus historisés du restaurant "Au p'tit café" , Nouméa, Nouvelle-Calédonie

https://dev.to/adriens/series/23071


Languages

Language:Python 100.0%