wo2net_delpher_tools 0.1.2__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wo2net_delpher_tools
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Tools for extracting and processing Delpher data for WO2Net
5
5
  Author: Daan Raven
6
6
  Author-email: Daan Raven <daan.raven@wo2net.nl>
@@ -46,9 +46,35 @@ Description-Content-Type: text/markdown
46
46
 
47
47
  # WO2Net Delpher Tools
48
48
 
49
- Tools for extracting and processing Delpher data for WO2Net.
49
+ Tools for extracting and processing Delpher data for WO2Net.
50
50
 
51
- ## Installatie
51
+ ## Installation
52
52
 
53
53
  ```bash
54
- pip install wo2net-delpher-tools
54
+ pip install wo2net_delpher_tools
55
+ ```
56
+
57
+ ```bash
58
+ uv add wo2net_delpher_tools
59
+ ```
60
+
61
+ ## Usage
62
+ The example below extracts pica productions numbers from a txt file and creates a json file for every number containing the metadata for the related issues.
63
+
64
+ ```python
65
+ import wo2net_delpher_tools
66
+
67
+ ppn_numbers = wo2net_delpher_tools.load_ppn_numbers_from_txt('pnn_numbers.txt')
68
+
69
+ for number in ppn_numbers:
70
+ wo2net_delpher_tools.process_ppn_to_json(number, f"{number}.json")
71
+ ```
72
+
73
+ ## Contributing
74
+
75
+ Pull requests are welcome. For major changes, please open an issue first
76
+ to discuss what you would like to change.
77
+
78
+ ## License
79
+
80
+ [MIT](https://github.com/Stichting-WO2Net/wo2net-delpher-tools/blob/main/LICENSE)
@@ -0,0 +1,34 @@
1
+ # WO2Net Delpher Tools
2
+
3
+ Tools for extracting and processing Delpher data for WO2Net.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install wo2net_delpher_tools
9
+ ```
10
+
11
+ ```bash
12
+ uv add wo2net_delpher_tools
13
+ ```
14
+
15
+ ## Usage
16
+ The example below extracts pica productions numbers from a txt file and creates a json file for every number containing the metadata for the related issues.
17
+
18
+ ```python
19
+ import wo2net_delpher_tools
20
+
21
+ ppn_numbers = wo2net_delpher_tools.load_ppn_numbers_from_txt('pnn_numbers.txt')
22
+
23
+ for number in ppn_numbers:
24
+ wo2net_delpher_tools.process_ppn_to_json(number, f"{number}.json")
25
+ ```
26
+
27
+ ## Contributing
28
+
29
+ Pull requests are welcome. For major changes, please open an issue first
30
+ to discuss what you would like to change.
31
+
32
+ ## License
33
+
34
+ [MIT](https://github.com/Stichting-WO2Net/wo2net-delpher-tools/blob/main/LICENSE)
@@ -7,7 +7,7 @@ wo2net_delpher_tools = ["uv_build"]
7
7
 
8
8
  [project]
9
9
  name = "wo2net_delpher_tools"
10
- version = "0.1.2"
10
+ version = "0.1.3"
11
11
  description = "Tools for extracting and processing Delpher data for WO2Net"
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.9.6"
@@ -1,8 +0,0 @@
1
- # WO2Net Delpher Tools
2
-
3
- Tools for extracting and processing Delpher data for WO2Net.
4
-
5
- ## Installatie
6
-
7
- ```bash
8
- pip install wo2net-delpher-tools