├── .gitignore ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.ipynb ├── README.rst ├── docs ├── Makefile ├── climate.rst ├── conf.py ├── index.rst ├── indicators.rst └── make.bat ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── wbpy ├── __init__.py ├── climate.py ├── indicators.py ├── non_ISO_region_codes.json ├── tests ├── __init__.py ├── climate_data.py ├── indicator_data.py ├── test_climate.py ├── test_indicators.py └── test_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/README.ipynb -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/climate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/docs/climate.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/indicators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/docs/indicators.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /wbpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/__init__.py -------------------------------------------------------------------------------- /wbpy/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/climate.py -------------------------------------------------------------------------------- /wbpy/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/indicators.py -------------------------------------------------------------------------------- /wbpy/non_ISO_region_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/non_ISO_region_codes.json -------------------------------------------------------------------------------- /wbpy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wbpy/tests/climate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/tests/climate_data.py -------------------------------------------------------------------------------- /wbpy/tests/indicator_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/tests/indicator_data.py -------------------------------------------------------------------------------- /wbpy/tests/test_climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/tests/test_climate.py -------------------------------------------------------------------------------- /wbpy/tests/test_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/tests/test_indicators.py -------------------------------------------------------------------------------- /wbpy/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/tests/test_utils.py -------------------------------------------------------------------------------- /wbpy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattduck/wbpy/HEAD/wbpy/utils.py --------------------------------------------------------------------------------