roslein commited on
Commit
91cf676
·
verified ·
1 Parent(s): 93711e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -3
README.md CHANGED
@@ -1,3 +1,32 @@
1
- ---
2
- license: gpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ language:
4
+ - cs
5
+ tags:
6
+ - legal
7
+ size_categories:
8
+ - 1K<n<10K
9
+ ---
10
+ ## Czech Legal Codes Dataset
11
+
12
+ ### Dataset Description
13
+ This dataset contains full texts of valid Czech legal codes (laws) as of February 21, 2025. The dataset focuses exclusively on primary legislation (laws) and excludes secondary legislation such as regulations and ordinances.
14
+
15
+ ### Data Source
16
+ The data was scraped from the official Czech Collection of Laws (Sbírka zákonů) portal: [e-sbirka.cz](https://www.e-sbirka.cz/)
17
+
18
+ ### Data Format
19
+ The dataset is provided as a CSV file with two columns:
20
+ - `law_id`: Unique identifier for each legal code
21
+ - `law_text`: Full text content of the legal code
22
+
23
+ ### Loading the Data
24
+ You can load the dataset using pandas:
25
+
26
+ ```python
27
+ df = pd.read_csv('./czech_legal_code.csv',
28
+ quoting=1, # QUOTE_ALL
29
+ quotechar='"',
30
+ escapechar='\\',
31
+ encoding='utf-8')
32
+ ```