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.
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/PKG-INFO +30 -4
- wo2net_delpher_tools-0.1.3/README.md +34 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/pyproject.toml +1 -1
- wo2net_delpher_tools-0.1.2/README.md +0 -8
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/LICENSE +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/__init__.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/__init__.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/article.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/issue.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/page.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/oai.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/pipeline.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/ppn.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/sru.py +0 -0
- {wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: wo2net_delpher_tools
|
|
3
|
-
Version: 0.1.
|
|
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
|
-
##
|
|
51
|
+
## Installation
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
pip install
|
|
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)
|
|
File without changes
|
{wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/article.py
RENAMED
|
File without changes
|
{wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/issue.py
RENAMED
|
File without changes
|
{wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/models/page.py
RENAMED
|
File without changes
|
|
File without changes
|
{wo2net_delpher_tools-0.1.2 → wo2net_delpher_tools-0.1.3}/src/wo2net_delpher_tools/pipeline.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|