File size: 1,261 Bytes
6fc56db e54107f 6fc56db c84bb8a 6fc56db 62c09db 6fc56db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
---
pretty_name: "Nulla: Project Links"
language:
- en
license:
- cc0-1.0
tags:
- tabular
- links
---
# Nulla v0.0.7
<p align="center">
<img src="./Nulla.png" alt="Nulla banner" width="960">
</p>
# Nulla: Project Links (Hugging Face Dataset)
This Hugging Face **dataset repository** contains a small, machine-readable CSV table of official/public links for the **Nulla** project.
**Main GitHub repo (project source + full docs):** https://github.com/Tsoxer/nulla
**Hugging Face Space (demo page with embedded YouTube trailer):** https://huggingface.co/spaces/Tsoxer/nulla
## Dataset contents
- `links.csv` — a single table with these columns:
- `id`: short stable key **(NOT a URL)**, e.g. `github_repo`, `youtube_demo`
- `type`: category label (repo / release / video / docs / community / etc.)
- `title`: what humans see (e.g. “Nulla releases”)
- `url`: the actual link (GitHub, YouTube, etc.)
- `description`: one-line explanation of the link
### Intended use
- Provide a stable “official links index” for humans and tools
- Let others programmatically fetch the canonical Nulla resources
## How to load (Python)
```python
from datasets import load_dataset
ds = load_dataset("Tsoxer/nulla")
print(ds)
print(ds["train"][0])
|