Add WhiskyDB free sample (15 spirits, 15 distilleries) + open taxonomies
Browse files- README.md +60 -0
- casks_taxonomy.csv +14 -0
- distilleries.csv +16 -0
- flavors_taxonomy.csv +16 -0
- spirits.csv +16 -0
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pretty_name: WhiskyDB — Fine Spirits & Whisky Dataset (Free Sample)
|
| 4 |
+
tags:
|
| 5 |
+
- spirits
|
| 6 |
+
- whisky
|
| 7 |
+
- food-and-drink
|
| 8 |
+
- e-commerce
|
| 9 |
+
- auctions
|
| 10 |
+
- provenance
|
| 11 |
+
size_categories:
|
| 12 |
+
- n<1K
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# 🥃 WhiskyDB — Fine Spirits & Whisky Dataset (Free Sample)
|
| 16 |
+
|
| 17 |
+
A **free sample** of WhiskyDB: a structured, relational dataset of whiskies and fine spirits built **entirely from open, legally accessible public sources** — government label registries (US TTB COLA), corporate registries (UK Companies House), the EU eAmbrosia GI register, Open Food Facts, Wikipedia/Wikidata, and open auction statistics — with a **provenance ledger entry behind every record**.
|
| 18 |
+
|
| 19 |
+
**This sample contains 15 spirits + 15 distilleries**, plus the **fully open cask & flavor taxonomies** (14 cask styles, 15 flavor descriptors).
|
| 20 |
+
|
| 21 |
+
The **full dataset covers 1,290+ spirits, 3,200+ distilleries & producers across 110+ countries, 270+ protected GI appellations, and 20,000+ monthly auction-price benchmarks (Nov 2005 → today)** — the auction index is the differentiated part: 225 consecutive months of distillery-level mean winning bids, ideal for valuation models and price-vs-age studies.
|
| 22 |
+
|
| 23 |
+
## Get the Full Dataset
|
| 24 |
+
|
| 25 |
+
* 📧 **Contact:** [whiskeydn.kite979@simplelogin.com](mailto:whiskeydn.kite979@simplelogin.com) — Standard Catalog $49/mo · API & Valuation $99/mo
|
| 26 |
+
* 🐙 **GitHub:** [WhiskyyDB/whisky-database](https://github.com/WhiskyyDB/whisky-database)
|
| 27 |
+
* 🥃 **Interactive Explorer:** [Dataset Sample Explorers Space — WhiskyDB tab](https://huggingface.co/spaces/Ichlibitiche/dataset-sample-explorers)
|
| 28 |
+
|
| 29 |
+
## Files
|
| 30 |
+
|
| 31 |
+
| File | License | Description |
|
| 32 |
+
| :--- | :--- | :--- |
|
| 33 |
+
| `spirits.csv` | CC BY-NC 4.0 | Sample bottlings: name, type, age, ABV, volume, source provenance |
|
| 34 |
+
| `distilleries.csv` | CC BY-NC 4.0 | Sample producers: name, country, region, source provenance |
|
| 35 |
+
| `casks_taxonomy.csv` | **CC BY 4.0** | Hierarchical cask styles (category → sub-type → style + wood species) — free for any use incl. commercial |
|
| 36 |
+
| `flavors_taxonomy.csv` | **CC BY 4.0** | Controlled flavor vocabulary (macro category → descriptor) — free for any use incl. commercial |
|
| 37 |
+
|
| 38 |
+
## Quick Start
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
import pandas as pd
|
| 42 |
+
|
| 43 |
+
base = "hf://datasets/Ichlibitiche/whiskydb-fine-spirits-sample/"
|
| 44 |
+
spirits = pd.read_csv(base + "spirits.csv")
|
| 45 |
+
distilleries = pd.read_csv(base + "distilleries.csv")
|
| 46 |
+
casks = pd.read_csv(base + "casks_taxonomy.csv")
|
| 47 |
+
print(len(spirits), "spirits, e.g.", spirits.iloc[0]["name"])
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## Use Cases
|
| 51 |
+
|
| 52 |
+
- Bar-menu & hospitality software (clean names, types, ABV, volumes)
|
| 53 |
+
- Collection-tracking and spirits-discovery apps
|
| 54 |
+
- Whisky investment analytics on a 19-year monthly auction index (full dataset)
|
| 55 |
+
- Flavor/cask-based recommendation engines on the open taxonomies
|
| 56 |
+
- ML / RAG corpora over a provenance-tracked spirits knowledge base
|
| 57 |
+
|
| 58 |
+
## License
|
| 59 |
+
|
| 60 |
+
Sample data: **CC BY-NC 4.0** — attribution, non-commercial. Taxonomies: **CC BY 4.0** — free for any use with attribution, including commercial. Full dataset: commercial license; records derived from ODbL/CC-BY-SA sources retain upstream attribution obligations. Corrections: `whiskeydn.kite979@simplelogin.com`.
|
casks_taxonomy.csv
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
category,sub_type,specific_style,wood_species,description
|
| 2 |
+
Sherry,Pedro Ximenez,PX Sherry Butt,Quercus alba,Sweet dark sherry cask
|
| 3 |
+
Sherry,Oloroso,Oloroso Sherry Puncheon,Quercus robur,Dry nutty sherry cask
|
| 4 |
+
Bourbon,Ex-Bourbon,1st Fill Bourbon Barrel,Quercus alba,Standard American oak barrel
|
| 5 |
+
Bourbon,Ex-Bourbon,Refill Bourbon Barrel,Quercus alba,Refill American oak barrel
|
| 6 |
+
Port,Ruby Port,Ruby Port Pipe,Quercus robur,Fruity wine cask
|
| 7 |
+
Port,Tawny Port,Tawny Port Pipe,Quercus robur,Aged nutty wine cask
|
| 8 |
+
Rum,Caribbean Rum,Rum Cask,Quercus alba,Sweet tropical rum cask
|
| 9 |
+
Wine,Red Wine,Bordeaux Wine Cask,Quercus robur,French oak wine cask
|
| 10 |
+
Virgin Oak,American Oak,Virgin American Oak,Quercus alba,New charred oak barrel
|
| 11 |
+
Virgin Oak,European Oak,Virgin Spanish Oak,Quercus robur,New European oak barrel
|
| 12 |
+
Sherry,Generic Sherry,Sherry Butt,Quercus robur,Generic sherry-seasoned cask
|
| 13 |
+
Bourbon,Ex-Bourbon,American Oak Cask,Quercus alba,Seasoned American oak cask
|
| 14 |
+
Japanese Oak,Mizunara,Mizunara Oak Cask,Quercus mongolica,Japanese Mizunara oak cask
|
distilleries.csv
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
distillery_id,name,country,region,source_name,source_url
|
| 2 |
+
1,Lagavulin,Scotland,Islay,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 3 |
+
2,Buffalo Trace,USA,Kentucky,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 4 |
+
3,Yamazaki,Japan,Osaka,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 5 |
+
4,Woodford Reserve,USA,Kentucky,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 6 |
+
5,Bulleit Distilling Co.,USA,Kentucky,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 7 |
+
6,Four Roses,USA,Kentucky,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 8 |
+
7,Aberargie,Scotland,Aberargie,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 9 |
+
8,Aberfeldy,Scotland,Aberfeldy,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 10 |
+
9,Aberlour,Scotland,Aberlour,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 11 |
+
10,Abhainn Dearg,Scotland,"Uig,Isle of Lewis",Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 12 |
+
11,Ailsa Bay,Scotland,Girvan,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 13 |
+
12,Allt-A-Bhainne,Scotland,Glenrinnes,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 14 |
+
13,Annandale,Scotland,Annan,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 15 |
+
14,Arbikie,Scotland,Inverkeilor,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
| 16 |
+
15,Ardbeg,Scotland,Port Ellen,Wikipedia - List of distilleries in Scotland (CC-BY-SA),https://en.wikipedia.org/wiki/List_of_distilleries_in_Scotland
|
flavors_taxonomy.csv
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
macro_category,descriptor
|
| 2 |
+
Peat & Smoke,Peat Smoke
|
| 3 |
+
Peat & Smoke,Medicinal / Iodine
|
| 4 |
+
Peat & Smoke,Bonfire Smoke
|
| 5 |
+
Sweet & Vanilla,Vanilla
|
| 6 |
+
Sweet & Vanilla,Caramel / Toffee
|
| 7 |
+
Sweet & Vanilla,Honey
|
| 8 |
+
Fruity,Citrus
|
| 9 |
+
Fruity,Dried Figs
|
| 10 |
+
Fruity,Orchard Fruit (Apple/Pear)
|
| 11 |
+
Fruity,Dark Berries
|
| 12 |
+
Spicy & Woody,Cinnamon
|
| 13 |
+
Spicy & Woody,Oak Spice
|
| 14 |
+
Spicy & Woody,Black Pepper
|
| 15 |
+
Rich & Nutty,Dark Chocolate
|
| 16 |
+
Rich & Nutty,Almond / Marzipan
|
spirits.csv
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
spirit_id,name,type,age,abv,volume_ml,source_name,source_url
|
| 2 |
+
1,Lagavulin 16 Year Old,Single Malt Scotch,16.0,43.0,700,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 3 |
+
2,Eagle Rare 10 Year Old,Bourbon,10.0,45.0,700,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 4 |
+
3,Yamazaki 12 Year Old,Single Malt Japanese,12.0,43.0,700,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 5 |
+
4,Woodford Reserve Kentucky Straight Bourbon,Bourbon,,43.2,700,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 6 |
+
5,Bulleit Bourbon,Bourbon,,45.0,700,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 7 |
+
6,Four Roses Single Barrel,Bourbon,,50.0,700,Seed Academic DB,https://github.com/WhiskyDB/seed
|
| 8 |
+
7,Ballantine's Finest,Whisky,,40.0,700,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 9 |
+
8,Jack Daniel's Whiskey,Whisky,,40.0,700,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 10 |
+
9,Johnnie Walker Red Scotch whisky,Scotch Whisky,,40.0,700,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 11 |
+
10,Monkey Shoulder,Whisky,,40.0,700,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 12 |
+
11,Jack Daniel's No.7,Whisky,,40.0,1000,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 13 |
+
12,Jameson Whiskey,Whisky,,40.0,1000,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 14 |
+
13,Whisky Old N°7,Whisky,,40.0,700,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 15 |
+
14,Whisky Ecosse blended sans âge 1 L Sir Edwards,Whisky,,40.0,1000,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|
| 16 |
+
15,Whisky Ecosse Blended 40% vol.,Whisky,,40.0,1000,Open Food Facts / Open Drinks Facts (ODbL),https://world.openfoodfacts.org/api/v2/search?categories_tags=en:whisky
|