The HDX Python API Library is designed to enable you to easily develop code that interacts with the Humanitarian Data Exchange (HDX) platform. The major goal of the library is to make pushing and pulling data from HDX as simple as possible for the end user.
For more information, please read the documentation.
This library is part of the Humanitarian Data Exchange (HDX) project. If you have humanitarian related data, please upload your datasets to HDX.
Development is currently done using Python 3.13. The environment can be created with:
uv syncThis creates a .venv folder with the versions specified in the project's uv.lock file.
pre-commit will be installed when syncing uv. It is run every time you make a git commit if you call it like this:
pre-commit installWith pre-commit, all code is formatted according to ruff guidelines.
To check if your changes pass pre-commit without committing, run:
pre-commit run --all-filesuv is used for package management. If
you’ve introduced a new package to the source code (i.e. anywhere in src/),
please add it to the project.dependencies section of pyproject.toml with
any known version constraints.
To add packages required only for testing, add them to the
[dependency-groups].
Any changes to the dependencies will be automatically reflected in
uv.lock with pre-commit, but you can re-generate the files without committing by
executing:
uv lock --upgradeuv is used for project management. The project can be built using:
uv buildLinting and syntax checking can be run with:
uv run ruff checkTo run the tests and view coverage, execute:
uv run pytestFor the test_ckan.py test to run successfully, some configuration is required:
- The environment variable HDX_KEY_TEST needs to contain a valid key from the HDX demo server at https://demo.data-humdata-org.ahconu.org/
- Authentication details for Google Sheets need to be obtained and either saved in a
file named
.gsheet_auth.jsonin the home directory (~) or placed in an environment variableGSHEET_AUTH. The file is preferred for Windows systems since adding such a long text string to an environment variable in Windows is challenging.
The documentation, including API documentation, is generated using ReadtheDocs and
MkDocs with Material. As you change the source code, remember to update the
documentation at documentation/index.md.