hdx-python-scraper 2.6.4__tar.gz → 2.6.5__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.
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/.pre-commit-config.yaml +1 -1
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/PKG-INFO +4 -4
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/hatch.toml +1 -1
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/pyproject.toml +3 -3
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/requirements.txt +16 -21
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/_version.py +2 -2
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/json.py +1 -1
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/reader.py +1 -1
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/sector_configuration.yaml +1 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/.coveragerc +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/.github/workflows/publish.yaml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/.github/workflows/run-python-tests.yaml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/.gitignore +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/CONTRIBUTING.md +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/LICENSE +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/README.md +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/documentation/.readthedocs.yaml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/documentation/index.md +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/documentation/mkdocs.yaml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/pytest.ini +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/ruff.toml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/base_scraper.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/base.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/excelfile.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/googlesheets.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/runner.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/aggregator.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/configurable_scraper.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/resource_downloader.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/rowparser.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/timeseries.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/fallbacks.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/hapi_admins.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/lookup.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/org_type.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/org_type_configuration.yaml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/region_lookup.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/sector.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/sources.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/writer.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/config/project_configuration.yaml +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/access_2pacx-1vrszjzuyvt9i-mkrq2hbxrul2lx2vihkthqm-lae8nyhqty70zqtcufs3pxbhzgat1l2bkoa4-daoap-pub-gid-574237756-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/additional-json.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/altworldindata_data-tagger-match-all-on-tagger-01-header-location-tagger-01-tag.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/casualties_2pacx-1vqidedbzz0ehrc0b4fswip14r7mdtu1mpmwakuxupelsah2awcurkgalfduhjvyjul8vzzat3r1b5qg-pub-gid-0-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/cbpf-allocations-and-contributions.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/cbpf2-allocations-and-contributions.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/cerf-covid-19-allocations.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/cerf2-covid-19-allocations.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/cerf2_global_download-full-pfmb-allocations.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/cerf_global_download-full-pfmb-allocations.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/covax_2pacx-1vtvzu79pptfaa2syevoqfyrrjy63djwitqu0ffbxiqczoun9k9timwmrvfgg1rbsnlmgyugzseiaye2-pub-gid-992438980-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/covidtests_data-owid-covid-data.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/download-global-pcode-lengths.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/download-global-pcodes-adm-1-2.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/education_closures_broken.xls +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/education_closures_school_closures.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/education_enrolment_enrollment_data.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ethiopia-drought-related-key-figures.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ethiopia-pin-targeted-reached-by-location-and-cluster.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ethiopia_drought_affected_targeted_reached_by_cluster.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/fallbacks.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/gam_download-unicef-who-wb-global-expanded-databases-severe-wasting.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/gam_other_download-unicef-who-wb-global-expanded-databases-severe-wasting.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/global-coordination-groups-beta.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/global-school-closures-covid19.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/hno_2017_sahel_nutrition.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/hno_2017_sahel_people_in_need.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/idmc-internally-displaced-persons-idps.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/idps_download-displacement-data.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/idps_override_population-widget-id-264111-geo-id-693-population-group-54074999.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/idps_somalia_som_unhcr_prmn_displacement_dataset.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ipc_somalia_som_food_insecurity_oct_dec2022_projection.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/kenya-drought-related-key-figures.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/kenya-pin-targeted-reached-by-location-and-cluster.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/kenya_drought_affected_targeted_reached_by_cluster.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/key_figures_2pacx-1vrppqx8jtkkkrckmzfncmmtfecvcpkbp9pdhs1sqtuyacmbsx8tlaxpgblfce-lcehukregguxja-4s-pub-gid-0-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/key_figures_2pacx-1vrppqx8jtkkkrckmzfncmmtfecvcpkbp9pdhs1sqtuyacmbsx8tlaxpgblfce-lcehukregguxja-4s-pub-gid-1275038715-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/key_figures_2pacx-1vrppqx8jtkkkrckmzfncmmtfecvcpkbp9pdhs1sqtuyacmbsx8tlaxpgblfce-lcehukregguxja-4s-pub-gid-2015311116-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/key_figures_eth_2pacx-1vrppqx8jtkkkrckmzfncmmtfecvcpkbp9pdhs1sqtuyacmbsx8tlaxpgblfce-lcehukregguxja-4s-pub-gid-2015311116-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/key_figures_ken_2pacx-1vrppqx8jtkkkrckmzfncmmtfecvcpkbp9pdhs1sqtuyacmbsx8tlaxpgblfce-lcehukregguxja-4s-pub-gid-1275038715-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/key_figures_som_2pacx-1vrppqx8jtkkkrckmzfncmmtfecvcpkbp9pdhs1sqtuyacmbsx8tlaxpgblfce-lcehukregguxja-4s-pub-gid-0-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/org_type_organization_types_beta_csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/organization-types-beta.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ourworldindata_data-tagger-match-all-on-tagger-01-header-location-tagger-01-tag.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ourworldindata_other_data-tagger-match-all-on-tagger-01-header-location-tagger-01-tag.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/oxcgrt_oxcgrt_csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/oxford-covid-19-government-response-tracker.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/population.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/population_indicator-sp-pop-downloadformat-excel-dataformat-list-totl.xls +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/population_other_indicator-sp-pop-downloadformat-excel-dataformat-list-totl.xls +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/regions_tbl_regcov_2020_ocha.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/resource_downloader_xlsx_ukr_border_crossings_090622.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/sadd-countries-to-include.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/sadd_covid-data-dataset-fullvars-extype-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/sahel-humanitarian-needs-overview.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/sahel-humanitarian-needs-overview_prefix.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/sector_global_coordination_groups_beta_csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/somalia-acute-food-insecurity-country-data.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/somalia-drought-related-key-figures.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/somalia-internally-displaced-persons-idps.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/somalia-pin-targeted-reached-by-location-and-cluster.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/somalia_drought_affected_targeted_reached_by_cluster.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/timeseries_casualties_2pacx-1vqidedbzz0ehrc0b4fswip14r7mdtu1mpmwakuxupelsah2awcurkgalfduhjvyjul8vzzat3r1b5qg-pub-gid-0-single-true-output-csv.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/total-covid-19-tests-performed-by-country.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ukraine-border-crossings.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/ukraine-who-does-what-where-3w.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/unocha-office-locations.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/who_national2_who-covid-19-global-data.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/who_national3_who-covid-19-global-data.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/who_national_who-covid-19-global-data.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/whowhatwhere_afg_3w_data.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/whowhatwhere_notags_3w_data.csv +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/test_output.xlsx +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/test_scraper_all.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/test_scraper_other.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/test_scraper_population.json +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/conftest.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/custom/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/custom/affected_targeted_reached.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/custom/education_closures.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/custom/education_enrolment.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/custom/test_custom.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/outputs/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/outputs/test_output.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_aggregation.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_appenddata.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_global.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_multipleurls.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_national.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_regionaltoplevel.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_resource_downloaders.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_subnational.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/test_timeseries.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/scrapers/unhcr_myanmar_idps.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/test_runner.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/__init__.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/test_hapi_admins.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/test_lookup.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/test_readers.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/test_regionlookup.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/test_sources.py +0 -0
- {hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/utilities/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hdx-python-scraper
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.5
|
|
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,9 +26,9 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
26
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
28
|
Requires-Dist: gspread
|
|
29
|
-
Requires-Dist: hdx-python-api>=6.
|
|
30
|
-
Requires-Dist: hdx-python-country>=3.9.
|
|
31
|
-
Requires-Dist: hdx-python-utilities>=3.8.
|
|
29
|
+
Requires-Dist: hdx-python-api>=6.4.0
|
|
30
|
+
Requires-Dist: hdx-python-country>=3.9.4
|
|
31
|
+
Requires-Dist: hdx-python-utilities>=3.8.7
|
|
32
32
|
Requires-Dist: regex
|
|
33
33
|
Provides-Extra: dev
|
|
34
34
|
Requires-Dist: pre-commit; extra == 'dev'
|
|
@@ -34,9 +34,9 @@ classifiers = [
|
|
|
34
34
|
requires-python = ">=3.8"
|
|
35
35
|
|
|
36
36
|
dependencies = [
|
|
37
|
-
"hdx-python-api>=6.
|
|
38
|
-
"hdx-python-country>=3.9.
|
|
39
|
-
"hdx-python-utilities>=3.8.
|
|
37
|
+
"hdx-python-api>=6.4.0",
|
|
38
|
+
"hdx-python-country>=3.9.4",
|
|
39
|
+
"hdx-python-utilities>=3.8.7",
|
|
40
40
|
"gspread",
|
|
41
41
|
"regex",
|
|
42
42
|
]
|
|
@@ -34,8 +34,6 @@ colorama==0.4.6
|
|
|
34
34
|
# via mkdocs-material
|
|
35
35
|
coverage==7.8.0
|
|
36
36
|
# via pytest-cov
|
|
37
|
-
cydifflib==1.2.0
|
|
38
|
-
# via hdx-python-utilities
|
|
39
37
|
defopt==6.4.0
|
|
40
38
|
# via hdx-python-api
|
|
41
39
|
distlib==0.3.9
|
|
@@ -64,15 +62,15 @@ google-auth==2.40.1
|
|
|
64
62
|
# gspread
|
|
65
63
|
google-auth-oauthlib==1.2.2
|
|
66
64
|
# via gspread
|
|
67
|
-
gspread==6.2.
|
|
65
|
+
gspread==6.2.1
|
|
68
66
|
# via hdx-python-scraper (pyproject.toml)
|
|
69
|
-
hdx-python-api==6.
|
|
67
|
+
hdx-python-api==6.4.0
|
|
70
68
|
# via hdx-python-scraper (pyproject.toml)
|
|
71
|
-
hdx-python-country==3.9.
|
|
69
|
+
hdx-python-country==3.9.4
|
|
72
70
|
# via
|
|
73
71
|
# hdx-python-scraper (pyproject.toml)
|
|
74
72
|
# hdx-python-api
|
|
75
|
-
hdx-python-utilities==3.8.
|
|
73
|
+
hdx-python-utilities==3.8.7
|
|
76
74
|
# via
|
|
77
75
|
# hdx-python-scraper (pyproject.toml)
|
|
78
76
|
# hdx-python-api
|
|
@@ -85,7 +83,7 @@ idna==3.10
|
|
|
85
83
|
# via
|
|
86
84
|
# email-validator
|
|
87
85
|
# requests
|
|
88
|
-
ijson==3.
|
|
86
|
+
ijson==3.4.0
|
|
89
87
|
# via hdx-python-utilities
|
|
90
88
|
inflect==7.5.0
|
|
91
89
|
# via quantulum3
|
|
@@ -115,7 +113,7 @@ libhxl==5.2.2
|
|
|
115
113
|
# hdx-python-country
|
|
116
114
|
loguru==0.7.3
|
|
117
115
|
# via hdx-python-utilities
|
|
118
|
-
makefun==1.
|
|
116
|
+
makefun==1.16.0
|
|
119
117
|
# via hdx-python-api
|
|
120
118
|
markdown==3.8
|
|
121
119
|
# via
|
|
@@ -136,7 +134,7 @@ mergedeep==1.3.4
|
|
|
136
134
|
# via
|
|
137
135
|
# mkdocs
|
|
138
136
|
# mkdocs-get-deps
|
|
139
|
-
mkapi==4.
|
|
137
|
+
mkapi==4.4.0
|
|
140
138
|
# via hdx-python-scraper (pyproject.toml)
|
|
141
139
|
mkdocs==1.6.1
|
|
142
140
|
# via
|
|
@@ -144,7 +142,7 @@ mkdocs==1.6.1
|
|
|
144
142
|
# mkdocs-material
|
|
145
143
|
mkdocs-get-deps==0.2.0
|
|
146
144
|
# via mkdocs
|
|
147
|
-
mkdocs-material==9.6.
|
|
145
|
+
mkdocs-material==9.6.14
|
|
148
146
|
# via mkapi
|
|
149
147
|
mkdocs-material-extensions==1.3.1
|
|
150
148
|
# via mkdocs-material
|
|
@@ -154,7 +152,7 @@ nodeenv==1.9.1
|
|
|
154
152
|
# via pre-commit
|
|
155
153
|
num2words==0.5.14
|
|
156
154
|
# via quantulum3
|
|
157
|
-
numpy==2.2.
|
|
155
|
+
numpy==2.2.6
|
|
158
156
|
# via pandas
|
|
159
157
|
oauthlib==3.2.2
|
|
160
158
|
# via requests-oauthlib
|
|
@@ -172,11 +170,11 @@ pathspec==0.12.1
|
|
|
172
170
|
# via mkdocs
|
|
173
171
|
petl==1.7.16
|
|
174
172
|
# via frictionless
|
|
175
|
-
platformdirs==4.3.
|
|
173
|
+
platformdirs==4.3.8
|
|
176
174
|
# via
|
|
177
175
|
# mkdocs-get-deps
|
|
178
176
|
# virtualenv
|
|
179
|
-
pluggy==1.
|
|
177
|
+
pluggy==1.6.0
|
|
180
178
|
# via pytest
|
|
181
179
|
ply==3.11
|
|
182
180
|
# via
|
|
@@ -234,7 +232,7 @@ pyyaml==6.0.2
|
|
|
234
232
|
# pymdown-extensions
|
|
235
233
|
# pyyaml-env-tag
|
|
236
234
|
# tableschema-to-template
|
|
237
|
-
pyyaml-env-tag==
|
|
235
|
+
pyyaml-env-tag==1.1
|
|
238
236
|
# via mkdocs
|
|
239
237
|
quantulum3==0.9.2
|
|
240
238
|
# via hdx-python-api
|
|
@@ -263,7 +261,7 @@ rfc3986==2.0.0
|
|
|
263
261
|
# via frictionless
|
|
264
262
|
rich==14.0.0
|
|
265
263
|
# via typer
|
|
266
|
-
rpds-py==0.
|
|
264
|
+
rpds-py==0.25.0
|
|
267
265
|
# via
|
|
268
266
|
# jsonschema
|
|
269
267
|
# referencing
|
|
@@ -271,9 +269,7 @@ rsa==4.9.1
|
|
|
271
269
|
# via google-auth
|
|
272
270
|
ruamel-yaml==0.18.10
|
|
273
271
|
# via hdx-python-utilities
|
|
274
|
-
|
|
275
|
-
# via ruamel-yaml
|
|
276
|
-
setuptools==80.3.1
|
|
272
|
+
setuptools==80.7.1
|
|
277
273
|
# via ckanapi
|
|
278
274
|
shellingham==1.5.4
|
|
279
275
|
# via typer
|
|
@@ -301,14 +297,13 @@ text-unidecode==1.3
|
|
|
301
297
|
# via python-slugify
|
|
302
298
|
typeguard==4.4.2
|
|
303
299
|
# via inflect
|
|
304
|
-
typer==0.15.
|
|
300
|
+
typer==0.15.4
|
|
305
301
|
# via frictionless
|
|
306
302
|
typing-extensions==4.13.2
|
|
307
303
|
# via
|
|
308
304
|
# frictionless
|
|
309
305
|
# pydantic
|
|
310
306
|
# pydantic-core
|
|
311
|
-
# referencing
|
|
312
307
|
# typeguard
|
|
313
308
|
# typer
|
|
314
309
|
# typing-inspection
|
|
@@ -326,7 +321,7 @@ urllib3==2.4.0
|
|
|
326
321
|
# requests
|
|
327
322
|
validators==0.35.0
|
|
328
323
|
# via frictionless
|
|
329
|
-
virtualenv==20.31.
|
|
324
|
+
virtualenv==20.31.2
|
|
330
325
|
# via pre-commit
|
|
331
326
|
watchdog==6.0.0
|
|
332
327
|
# via mkdocs
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/json.py
RENAMED
|
@@ -201,7 +201,7 @@ class JsonFile(BaseOutput):
|
|
|
201
201
|
save_json(self.json, filepath)
|
|
202
202
|
filepaths.append(filepath)
|
|
203
203
|
for kwarg in kwargs:
|
|
204
|
-
|
|
204
|
+
globals()[kwarg] = kwargs[kwarg]
|
|
205
205
|
additional = self.configuration.get("additional_outputs", [])
|
|
206
206
|
for filedetails in additional:
|
|
207
207
|
json = {}
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/reader.py
RENAMED
|
@@ -165,7 +165,7 @@ class Read(Retrieve):
|
|
|
165
165
|
str: Url with any template arguments replaced
|
|
166
166
|
"""
|
|
167
167
|
for kwarg in kwargs:
|
|
168
|
-
|
|
168
|
+
globals()[kwarg] = kwargs[kwarg]
|
|
169
169
|
template_string, match_string = match_template(url)
|
|
170
170
|
if template_string:
|
|
171
171
|
replace_string = eval(match_string)
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/.github/workflows/run-python-tests.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/base_scraper.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/__init__.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/base.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/outputs/excelfile.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/scrapers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/lookup.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/sector.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/sources.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/src/hdx/scraper/framework/utilities/writer.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/config/project_configuration.yaml
RENAMED
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/additional-json.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/input/oxcgrt_oxcgrt_csv.csv
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/test_scraper_other.json
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/fixtures/test_scraper_population.json
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/__init__.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/conftest.py
RENAMED
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/custom/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hdx_python_scraper-2.6.4 → hdx_python_scraper-2.6.5}/tests/hdx/scraper/framework/test_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|