Getting started

Installation

iatikit is tested for pythons 3.6, 3.7 and 3.8.

You can install iatikit using pip:

pip install iatikit

If you’re on Windows, we recommend using Jupyter Notebook, which you can get by installing Anaconda.

Once Jupyter is installed, you can run the following inside a Notebook to install iatikit:

import sys

!{sys.executable} -m pip install --upgrade iatikit

Setup

Once iatikit is installed, you’ll need to fetch a recent version of all IATI data from the registry, as well as the latest codelists and schemas.

import iatikit

# download all schemas and codelists
iatikit.download.standard()

# download all XML in the registry
iatikit.download.data()