File size: 1,162 Bytes
39fa286
 
 
806ad41
d329871
806ad41
d329871
806ad41
d329871
39fa286
d329871
39fa286
eff8195
 
 
 
 
80432dd
d329871
80432dd
 
eff8195
 
80432dd
d329871
80432dd
 
eff8195
 
80432dd
eff8195
 
39fa286
 
 
753ffcc
 
3acf69b
 
753ffcc
 
3acf69b
 
a827106
3acf69b
 
 
 
 
 
 
 
 
753ffcc
3acf69b
 
 
 
 
 
 
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
dataset_info:
  features:
  - name: uuid
    dtype: string
  - name: url
    dtype: string
  - name: title
    dtype: string
  - name: html_content
    dtype: string
  splits:
  - name: zh
    num_bytes: 1601593205
    num_examples: 39851
  - name: es
    num_bytes: 5021837
    num_examples: 120
  - name: ru
    num_bytes: 5864612
    num_examples: 120
  - name: fr
    num_bytes: 5059295
    num_examples: 120
  - name: en
    num_bytes: 4599987
    num_examples: 120
  - name: ar
    num_bytes: 5560430
    num_examples: 120
  download_size: 456115539
  dataset_size: 1627699366
---
# Dataset Card for "un_corpus_for_sitemap"

# How to use
```python
from datasets import load_dataset
import datasets


dataset = load_dataset('ranWang/un_corpus_for_sitemap')

#   lang_list = ['zh', 'en', 'fr', 'es', 'ru', 'ar']
for lang in dataset:
    for colum in dataset[lang]:
#       colum.keys = ['uuid', 'url', 'title', 'html_content']
#       code...

OR 

# you want to specify the language
dataset = load_dataset('ranWang/un_corpus_for_sitemap', split={lang})

for colum in dataset:
#   colum.keys = ['uuid', 'url', 'title', 'html_content']
#   code...



```