Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.59 KB

README.rst

File metadata and controls

50 lines (31 loc) · 1.59 KB

GHOclient

Introduction

The WHO Global Health Observatory is a large global health data repository that makes available an enormous collection of indicators which can be downloaded through their API. GHOclient is a Python client which helps data scientists search and access their data programmatically.

Features

  • Search for indicators by keyword
  • Browse available datasets
  • List region and country codes
  • get the data as pandas Dataframes

Example usage

For example, to search for health data ona certain topic, like smoking

import ghoclient
ghoclient.index.search('smoking')

The above lines will fetch a Dataframe with all indicators containing the word smoking in their description.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.