https://github.com/adriens/auptitcafe-data
Menus historisés du restaurant "Au p'tit café" , Nouméa, Nouvelle-Calédonie
https://github.com/adriens/auptitcafe-data
csv data-science duckdb duckdb-database noumea nouvelle-caledonie opendata
Last synced: 29 days ago
JSON representation
Menus historisés du restaurant "Au p'tit café" , Nouméa, Nouvelle-Calédonie
- Host: GitHub
- URL: https://github.com/adriens/auptitcafe-data
- Owner: adriens
- Created: 2023-05-28T07:25:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-16T12:20:01.000Z (about 1 year ago)
- Last Synced: 2024-04-16T15:18:37.410Z (about 1 year ago)
- Topics: csv, data-science, duckdb, duckdb-database, noumea, nouvelle-caledonie, opendata
- Language: Python
- Homepage: https://dev.to/adriens/series/23071
- Size: 169 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://xcfile.dev)
# ❔ 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:
- [📝 Dedicated article](https://dev.to/adriens/huggingchat-assistant-ask-waiter-for-menu-advices-2kfc)
- [🤖 Au p'tit café HuggingChat Assistant](https://bit.ly/3SJcNsg)# 🦆 Play with `SQL` in `duckdb`
## Current menu
```sql
install httpfs;
select *
from 'https://raw.githubusercontent.com/adriens/auptitcafe-data/main/data/current_menus_headers.csv';```
### 🐚 Shell (`bash`, `zsh`)
```shell
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```sh
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
```