Skip to content

adriens/auptitcafe-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

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