Tsoxer commited on
Commit
6fc56db
·
verified ·
1 Parent(s): 2e5be18

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Nulla: Project Links"
3
+ language:
4
+ - en
5
+ license:
6
+ - cc0-1.0
7
+ tags:
8
+ - tabular
9
+ - links
10
+ ---
11
+
12
+ # Nulla: Project Links (Hugging Face Dataset)
13
+
14
+ This Hugging Face **dataset repository** contains a small, machine-readable CSV table of official/public links for the **Nulla** project.
15
+
16
+ **Main GitHub repo (project source + full docs):** https://github.com/Tsoxer/nulla
17
+
18
+ ## Dataset contents
19
+
20
+ - `links.csv` — a single table with these columns:
21
+ - `id`: stable identifier (e.g. `github_repo`, `youtube_demo`)
22
+ - `type`: `repo`, `video`, `docs`, `release`, etc.
23
+ - `title`: short human-readable label
24
+ - `url`: the link
25
+ - `description`: one-line explanation
26
+
27
+ ### Intended use
28
+
29
+ - Provide a stable “official links index” for humans and tools
30
+ - Let others programmatically fetch the canonical Nulla resources
31
+
32
+ ## How to load (Python)
33
+
34
+ ```python
35
+ from datasets import load_dataset
36
+
37
+ ds = load_dataset("Tsoxer/nulla")
38
+ print(ds)
39
+ print(ds["train"][0])