Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 816 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 816 Bytes

UNDRDG provides building blocks to convert existing datasets to the UNDR format.

The scripts used to convert the datasets that we re-distribute can be found in scripts. The converted datasets can be browsed at https://www.undr.space.

Use UNDRDG in your own project

python3 -m pip install undrdg

See scripts for usage examples.

Add scripts to this directory

python3 -m venv .venv
source .venv/bin/activate
pip install -r scripts/requirements.txt

Contribute to UNDRDG

  1. Install the development version
python3 -m venv .venv
source .venv/bin/activate
pip remove undrdg # to avoid name clashes
pip install -e .
  1. Edit files in undrg. Changes are automatically reflected in scripts that import the library.

  2. Format and lint.

isort .; black .; pyright .