Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- de
|
| 5 |
+
pretty_name: German Public Service Institutions Register — 2026-07
|
| 6 |
+
tags:
|
| 7 |
+
- europe
|
| 8 |
+
- government
|
| 9 |
+
- public-services
|
| 10 |
+
- procurement
|
| 11 |
+
- compliance
|
| 12 |
+
- monthly
|
| 13 |
+
task_categories:
|
| 14 |
+
- tabular-classification
|
| 15 |
+
---
|
| 16 |
+
# German Public Service Institutions Register — 2026-07
|
| 17 |
+
|
| 18 |
+
German public-service institution registration data for the 2026-07 reporting cycle. Fields: institution_id, name, rechtsform, register_nr, register_gericht, plz, ort, gruendungsdatum (DD.MM.YYYY), mitarbeiter, branche, status, steuernummer, cpv_code, budget_eur, supplier_id, supplier_name. German text with umlauts and ß.
|
| 19 |
+
|
| 20 |
+
## Data
|
| 21 |
+
|
| 22 |
+
- Rows: >10,000
|
| 23 |
+
- Format: Parquet (`data/de_public_institutions.parquet`)
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from datasets import load_dataset
|
| 29 |
+
ds = load_dataset("toolathon123/de-public-institutions-2026-07", split="train")
|
| 30 |
+
```
|