hdx-python-scraper 2.7.2__py3-none-any.whl → 2.7.3__py3-none-any.whl
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.
- hdx/scraper/framework/_version.py +8 -18
- hdx/scraper/framework/utilities/org_type_configuration.yaml +4 -4
- hdx/scraper/framework/utilities/sector_configuration.yaml +4 -4
- {hdx_python_scraper-2.7.2.dist-info → hdx_python_scraper-2.7.3.dist-info}/METADATA +4 -4
- {hdx_python_scraper-2.7.2.dist-info → hdx_python_scraper-2.7.3.dist-info}/RECORD +7 -7
- {hdx_python_scraper-2.7.2.dist-info → hdx_python_scraper-2.7.3.dist-info}/WHEEL +1 -1
- {hdx_python_scraper-2.7.2.dist-info → hdx_python_scraper-2.7.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
# file generated by
|
|
1
|
+
# file generated by vcs-versioning
|
|
2
2
|
# don't change, don't track in version control
|
|
3
|
+
from __future__ import annotations
|
|
3
4
|
|
|
4
5
|
__all__ = [
|
|
5
6
|
"__version__",
|
|
@@ -10,25 +11,14 @@ __all__ = [
|
|
|
10
11
|
"commit_id",
|
|
11
12
|
]
|
|
12
13
|
|
|
13
|
-
TYPE_CHECKING = False
|
|
14
|
-
if TYPE_CHECKING:
|
|
15
|
-
from typing import Tuple
|
|
16
|
-
from typing import Union
|
|
17
|
-
|
|
18
|
-
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
-
COMMIT_ID = Union[str, None]
|
|
20
|
-
else:
|
|
21
|
-
VERSION_TUPLE = object
|
|
22
|
-
COMMIT_ID = object
|
|
23
|
-
|
|
24
14
|
version: str
|
|
25
15
|
__version__: str
|
|
26
|
-
__version_tuple__:
|
|
27
|
-
version_tuple:
|
|
28
|
-
commit_id:
|
|
29
|
-
__commit_id__:
|
|
16
|
+
__version_tuple__: tuple[int | str, ...]
|
|
17
|
+
version_tuple: tuple[int | str, ...]
|
|
18
|
+
commit_id: str | None
|
|
19
|
+
__commit_id__: str | None
|
|
30
20
|
|
|
31
|
-
__version__ = version = '2.7.
|
|
32
|
-
__version_tuple__ = version_tuple = (2, 7,
|
|
21
|
+
__version__ = version = '2.7.3'
|
|
22
|
+
__version_tuple__ = version_tuple = (2, 7, 3)
|
|
33
23
|
|
|
34
24
|
__commit_id__ = commit_id = None
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
log_message: "Org type mapping"
|
|
2
2
|
file_prefix: "org_type"
|
|
3
|
-
code_key: "
|
|
4
|
-
name_key: "
|
|
3
|
+
code_key: "HR.info ID"
|
|
4
|
+
name_key: "Preferred Term"
|
|
5
5
|
|
|
6
6
|
datasetinfo:
|
|
7
7
|
dataset: "organization-types-beta"
|
|
8
|
-
resource: "Organization Types (Beta) - CSV"
|
|
8
|
+
resource: "Organization Types (Beta) - CSV no HXL"
|
|
9
9
|
format: "csv"
|
|
10
|
-
headers:
|
|
10
|
+
headers: 1
|
|
11
11
|
|
|
12
12
|
extra_entries:
|
|
13
13
|
"501": "Civil Society"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
log_message: "Sector mapping"
|
|
2
2
|
file_prefix: "sector"
|
|
3
|
-
code_key: "
|
|
4
|
-
name_key: "
|
|
3
|
+
code_key: "ACRONYM"
|
|
4
|
+
name_key: "Preferred Term"
|
|
5
5
|
|
|
6
6
|
datasetinfo:
|
|
7
7
|
dataset: "global-coordination-groups-beta"
|
|
8
|
-
resource: "Global Coordination Groups (Beta) CSV"
|
|
8
|
+
resource: "Global Coordination Groups (Beta) CSV no HXL"
|
|
9
9
|
format: "csv"
|
|
10
|
-
headers:
|
|
10
|
+
headers: 1
|
|
11
11
|
|
|
12
12
|
extra_entries:
|
|
13
13
|
"Cash": "Cash programming"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hdx-python-scraper
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.3
|
|
4
4
|
Summary: HDX Python scraper utilities to assemble data from multiple sources
|
|
5
5
|
Project-URL: Homepage, https://github.com/OCHA-DAP/hdx-python-scraper
|
|
6
6
|
Author-email: Michael Rans <rans@email.com>
|
|
@@ -26,15 +26,15 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
26
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
27
|
Requires-Python: >=3.10
|
|
28
28
|
Requires-Dist: gspread
|
|
29
|
-
Requires-Dist: hdx-python-api>=6.6.
|
|
29
|
+
Requires-Dist: hdx-python-api>=6.6.7
|
|
30
30
|
Requires-Dist: hdx-python-country>=4.1.1
|
|
31
|
-
Requires-Dist: hdx-python-utilities>=4.0.
|
|
31
|
+
Requires-Dist: hdx-python-utilities>=4.0.8
|
|
32
32
|
Requires-Dist: libhxl
|
|
33
33
|
Requires-Dist: regex
|
|
34
34
|
Provides-Extra: docs
|
|
35
35
|
Requires-Dist: mkapi; extra == 'docs'
|
|
36
36
|
Provides-Extra: pandas
|
|
37
|
-
Requires-Dist: pandas>=2.
|
|
37
|
+
Requires-Dist: pandas>=2.3.3; extra == 'pandas'
|
|
38
38
|
Description-Content-Type: text/markdown
|
|
39
39
|
|
|
40
40
|
[](https://github.com/OCHA-DAP/hdx-python-scraper/actions/workflows/run-python-tests.yaml)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
hdx/scraper/framework/__init__.py,sha256=11ozJKiUsqDCZ3_mcAHhGYUyGK_Unl54djVSBBExFB4,59
|
|
2
|
-
hdx/scraper/framework/_version.py,sha256=
|
|
2
|
+
hdx/scraper/framework/_version.py,sha256=l7Ro37ewuocnI5LVmRhw7Ui8MtONxiC_A2nbe2RTysE,520
|
|
3
3
|
hdx/scraper/framework/base_scraper.py,sha256=DbR3u0KBAb_LBT82Nytq6PnpImrHI2wqpt_GIi9XNoc,14879
|
|
4
4
|
hdx/scraper/framework/runner.py,sha256=9j070q9scewNu-1E2Grqkn1BNSTUF0nJs-wYBQIFDzs,51026
|
|
5
5
|
hdx/scraper/framework/outputs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -18,14 +18,14 @@ hdx/scraper/framework/utilities/fallbacks.py,sha256=lFq8KSG53GPT4s3UUcPCw4CuAP6e
|
|
|
18
18
|
hdx/scraper/framework/utilities/hapi_admins.py,sha256=3dDK_MggacaWoH5ZNV7y5_q3el7E9dmax8s2A3kkS5k,3935
|
|
19
19
|
hdx/scraper/framework/utilities/lookup.py,sha256=_HXeWtkTduRU4x9MVbhb8qx3kB6CyLglawF7WsLPolY,3368
|
|
20
20
|
hdx/scraper/framework/utilities/org_type.py,sha256=euQyRV01yA8kJ3nMFvZxnTRLnvCuxgV1ZZQx8gEOB8Y,183
|
|
21
|
-
hdx/scraper/framework/utilities/org_type_configuration.yaml,sha256=
|
|
21
|
+
hdx/scraper/framework/utilities/org_type_configuration.yaml,sha256=IwDfnHmIDM8PzLtEotArzAR37fc4FSviiLi4NvP8iew,1825
|
|
22
22
|
hdx/scraper/framework/utilities/reader.py,sha256=OxMDKR3tsMEn1PGVhNunC03osYn7y34UZhpE9TPbAKY,26545
|
|
23
23
|
hdx/scraper/framework/utilities/region_lookup.py,sha256=quk9w3Dmg5O500QkBcQQGK2HjKKW9L1ANvfD9lnJnuE,3836
|
|
24
24
|
hdx/scraper/framework/utilities/sector.py,sha256=XGysivvPhTqQfK6z1y96sDJATk3zx7sS_qGqCa4PbaI,177
|
|
25
|
-
hdx/scraper/framework/utilities/sector_configuration.yaml,sha256=
|
|
25
|
+
hdx/scraper/framework/utilities/sector_configuration.yaml,sha256=9Z3qEI-9FLKUV8xXIixpxaqGoCaTmzelEGUXMVIrjkY,4958
|
|
26
26
|
hdx/scraper/framework/utilities/sources.py,sha256=aoUZUtOmXI11b-0pE0EeAikADkXYRigUQqkcIgcJooE,10897
|
|
27
27
|
hdx/scraper/framework/utilities/writer.py,sha256=btwXTleVfp1DuQ5LBqsZcwLKsrdxuFJyjd-kieXZDYc,15899
|
|
28
|
-
hdx_python_scraper-2.7.
|
|
29
|
-
hdx_python_scraper-2.7.
|
|
30
|
-
hdx_python_scraper-2.7.
|
|
31
|
-
hdx_python_scraper-2.7.
|
|
28
|
+
hdx_python_scraper-2.7.3.dist-info/METADATA,sha256=gnQn34rs7Bx4w8N6WIyEO5wxg-rVu-z3Wl8m_LM-QCg,3278
|
|
29
|
+
hdx_python_scraper-2.7.3.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
30
|
+
hdx_python_scraper-2.7.3.dist-info/licenses/LICENSE,sha256=wc-4GpMn-ODs-U_bTe1YCiPVgvcjzrpYOx2wPuyAeII,1079
|
|
31
|
+
hdx_python_scraper-2.7.3.dist-info/RECORD,,
|
|
File without changes
|