Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.07 KB

README.md

File metadata and controls

51 lines (34 loc) · 1.07 KB

xc compatible

❔ About

Historized data in csv format so anyone can play with ease with the datas.

🤖 Chat with menus

You can chat with menus on HuggingChat:

🦆 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