Historized data in csv
format so anyone can play with ease with the datas.
You can chat with menus on HuggingChat:
install httpfs;
select *
from 'https://raw.githubusercontent.com/adriens/auptitcafe-data/main/data/current_menus_headers.csv';
duckdb << EOF
install httpfs;
select * from 'https://raw.githubusercontent.com/adriens/auptitcafe-data/main/data/current_menus_headers.csv' ;
EOF
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