HDX Python Library
Project description
Usage
The library has detailed API documentation which can be found here: http://ocha-dap.github.io/hdx-python-api/. The code for the library is here: https://github.com/ocha-dap/hdx-python-api.
Getting Started
Obtaining your API Key
If you just want to read data from HDX, then an API key is not necessary and you can ignore the 7 steps below. However, if you want to write data to HDX, then you need to register on the website to obtain an API key. You can supply this key as an argument or create an API key file. If you create an API key file, by default this is assumed to be called .hdxkey and is located in the current user’s home directory ~. Assuming you are using a desktop browser, the API key is obtained by:
Browse to the HDX website
Left click on LOG IN in the top right of the web page if not logged in and log in
Left click on your username in the top right of the web page and select PROFILE from the drop down menu
Scroll down to the bottom of the profile page
Copy the API key which will be of the form: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
To make an API key file, paste the API key into a text file
Save the text file with filename .hdxkey in the current user’s home directory
Installing the Library
To include the HDX Python library in your project, you must pip install or add to your requirements.txt file the following line:
hdx-python-api==VERSION
Docker
The library is also available set up and ready to go in a Docker image:
docker pull mcarans/hdx-python-api docker run -i -t mcarans/hdx-python-api:latest python3
A Quick Example
Let’s start with a simple example that also ensures that the library is working properly. In this tutorial, we use virtualenv, a sandbox, so that your Python install is not modified.
If you just want to read data from HDX, then an API key is not necessary. However, if you want to write data to HDX, then you need to register on the website to obtain an API key. Please see above about where to find it on the website. Once you have it, then put it into a file in your home directory:
cd ~ echo xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx > .hdxkey
If you are using the Docker image, you can jump to step 7, otherwise install virtualenv if not installed:
pip install virtualenv
On some Linux distributions, you can do the following instead to install from the distribution’s official repository:
sudo apt-get install virtualenv
Create a Python 3 virtualenv and activate it:
On Windows (assuming the Python 3 executable is in your path):
virtualenv test test\Scripts\activate
On other OSs:
virtualenv -p python3 test source test/bin/activate
Install the HDX Python library:
pip install hdx-python-api
If you get errors, it is probably the dependencies of the cryptography package
Launch python:
python
Import required classes:
from hdx.configuration import Configuration from hdx.data.dataset import Dataset
Use configuration defaults.
If you only want to read data, then connect to the production HDX server:
Configuration.create(hdx_site='prod', hdx_read_only=True)
If you want to write data, then for experimentation, do not use the production HDX server. Instead you can use one of the test servers. Assuming you have an API key stored in a file .hdxkey in the current user’s home directory:
Configuration.create(hdx_site='test')
Read this dataset ACLED Conflict Data for Africa (Realtime - 2016) from HDX and view the date of the dataset:
dataset = Dataset.read_from_hdx('acled-conflict-data-for-africa-realtime-2016') print(dataset.get_dataset_date())
If you have an API key, as a test, change the dataset date:
dataset.set_dataset_date('2015-07-26', date_format='%Y-%m-%d') print(dataset.get_dataset_date()) dataset.update_in_hdx()
You can view it on HDX before changing it back (if you have an API key):
dataset.set_dataset_date('2016-06-25', date_format='%Y-%m-%d') dataset.update_in_hdx()
You can search for datasets on HDX and get their resources:
datasets = Dataset.search_in_hdx('ACLED', rows=10) print(datasets) resources = Dataset.get_all_resources(datasets) print(resources)
You can download a resource in the dataset:
url, path = resources[0].download() print('Resource URL %s downloaded to %s' % (url, path))
Exit and remove virtualenv:
exit() deactivate
On Windows:
rd /s /q test
On other OSs:
rm -rf test
Building a Project
Default Configuration for Facades
The easiest way to get started is to use the facades and configuration defaults. The facades set up both logging and HDX configuration.
The default configuration loads an internal HDX configuration located within the library, and assumes that there is an API key file called .hdxkey in the current user’s home directory ~ and a YAML project configuration located relative to your working directory at config/project_configuration.yml which you must create. The project configuration is used for any configuration specific to your project.
The default logging configuration reads a configuration file internal to the library that sets up an coloured console handler outputting at DEBUG level and a file handler writing to errors.log at ERROR level.
Facades
You will most likely just need the simple facade. If you are in the HDX team, you may need to use the ScraperWiki facade which reports status to that platform (in which case replace simple with scraperwiki in the code below):
from hdx.facades.simple import facade def main(): ***YOUR CODE HERE*** if __name__ == '__main__': facade(main)
Customising the Configuration
It is possible to pass configuration parameters in the facade call eg.
facade(main, hdx_site = HDX_SITE_TO_USE, hdx_read_only = ONLY_READ_NOT_WRITE, hdx_key_file = LOCATION_OF_HDX_KEY_FILE, hdx_config_yaml=PATH_TO_HDX_YAML_CONFIGURATION, project_config_dict = {'MY_PARAMETER', 'MY_VALUE'})
If you do not use the facade, you can use the create method of the Configuration class directly, passing in appropriate keyword arguments ie.
from hdx.configuration import Configuration ... Configuration.create(KEYWORD ARGUMENTS)
KEYWORD ARGUMENTS can be:
Choose |
Argument |
Type |
Value |
Default |
---|---|---|---|---|
hdx_site |
Optional[bool] |
HDX site to use eg. prod, feature |
test |
|
One of: |
hdx_read_only |
bool |
Read only or read/write access to HDX |
False |
or |
hdx_key |
Optional[str] |
HDX key |
|
or |
hdx_key_file |
Optional[str] |
Path to HDX key file. |
~/.hdxkey |
One of: |
hdx_config_dict |
dict |
HDX configuration dictionary |
|
or |
hdx_config_json |
str |
Path to JSON HDX configuration |
|
or |
hdx_config_yaml |
str |
Path to YAML HDX configuration |
Library’s internal hdx_configuration.yml |
One of: |
project_config_dict |
dict |
Project configuration dictionary |
|
or |
project_config_json |
str |
Path to JSON Project configuration |
|
or |
project_config_yaml |
str |
Path to YAML Project configuration |
To access the configuration, you use the read method of the Configuration class as follows:
Configuration.read()
For more advanced users, there are methods to allow you to pass in your own configuration object, remote CKAN object and list of valid locations. See the API documentation for more information.
This global configuration is used by default by the library but can be replaced by Configuration instances passed to the constructors of HDX objects like Dataset eg.
configuration = Configuration(KEYWORD ARGUMENTS) configuration.setup_remoteckan(REMOTE CKAN OBJECT) configuration.setup_validlocations(LIST OF VALID LOCATIONS) dataset = Dataset(configuration=configuration)
Configuring Logging
If you wish to change the logging configuration from the defaults, you will need to call setup_logging with arguments unless you have used the simple or ScraperWiki facades, in which case you must update the hdx.facades module variable logging_kwargs before importing the facade.
If not using facade:
from hdx.hdx_logging import setup_logging ... logger = logging.getLogger(__name__) setup_logging(KEYWORD ARGUMENTS)
If using facade:
from hdx.facades import logging_kwargs logging_kwargs.update(DICTIONARY OF KEYWORD ARGUMENTS) from hdx.facades.simple import facade
KEYWORD ARGUMENTS can be:
Choose |
Argument |
Type |
Value |
Default |
---|---|---|---|---|
One of: |
logging_config_dict |
dict |
Logging configuration dictionary |
|
or |
logging_config_json |
str |
Path to JSON Logging configuration |
|
or |
logging_config_yaml |
str |
Path to YAML Logging configuration |
Library’s internal logging_configuration.yml |
One of: |
smtp_config_dict |
dict |
Email Logging configuration dictionary |
|
or |
smtp_config_json |
str |
Path to JSON Email Logging configuration |
|
or |
smtp_config_yaml |
str |
Path to YAML Email Logging configuration |
Do not supply smtp_config_dict, smtp_config_json or smtp_config_yaml unless you are using the default logging configuration!
If you are using the default logging configuration, you have the option to have a default SMTP handler that sends an email in the event of a CRITICAL error by supplying either smtp_config_dict, smtp_config_json or smtp_config_yaml. Here is a template of a YAML file that can be passed as the smtp_config_yaml parameter:
handlers: error_mail_handler: toaddrs: EMAIL_ADDRESSES subject: "RUN FAILED: MY_PROJECT_NAME"
Unless you override it, the mail server mailhost for the default SMTP handler is localhost and the from address fromaddr is noreply@localhost.
To use logging in your files, simply add the line below to the top of each Python file:
logger = logging.getLogger(__name__)
Then use the logger like this:
logger.debug('DEBUG message') logger.info('INFORMATION message') logger.warning('WARNING message') logger.error('ERROR message') logger.critical('CRITICAL error message')
Operations on HDX Objects
You can read an existing HDX object with the static read_from_hdx method which takes an identifier parameter and returns the an object of the appropriate HDX object type eg. Dataset or None depending upon whether the object was read eg.
dataset = Dataset.read_from_hdx('DATASET_ID_OR_NAME')
You can search for datasets and resources in HDX using the search_in_hdx method which takes a query parameter and returns the a list of objects of the appropriate HDX object type eg. list[Dataset] eg.
datasets = Dataset.search_in_hdx('QUERY', **kwargs)
The query parameter takes a different format depending upon whether it is for a dataset or a resource. The resource level search is limited to fields in the resource, so in most cases, it is preferable to search for datasets and then get their resources.
Various additional arguments (**kwargs) can be supplied. These are detailed in the API documentation. The rows parameter for datasets (limit for resources) is the maximum number of matches returned and is by default 10.
You can create an HDX Object, such as a dataset, resource or gallery item by calling the constructor with an optional dictionary containing metadata. For example:
from hdx.data.dataset import Dataset dataset = Dataset({ 'name': slugified_name, 'title': title })
The dataset name should not contain special characters and hence if there is any chance of that, then it needs to be slugified. Slugifying is way of making a string valid within a URL (eg. ae replaces ä). There are various packages that can do this eg. awesome-slugify.
You can add metadata using the standard Python dictionary square brackets eg.
dataset['name'] = 'My Dataset'
You can also do so by the standard dictionary update method, which takes a dictionary eg.
dataset.update({'name': 'My Dataset'})
Larger amounts of static metadata are best added from files. YAML is very human readable and recommended, while JSON is also accepted eg.
dataset.update_from_yaml([path]) dataset.update_from_json([path])
The default path if unspecified is config/hdx_TYPE_static.yml for YAML and config/hdx_TYPE_static.json for JSON where TYPE is an HDX object’s type like dataset or resource eg. config/hdx_galleryitem_static.json. The YAML file takes the following form:
owner_org: "acled" maintainer: "acled" ... tags: - name: "conflict" - name: "political violence" gallery: - title: "Dynamic Map: Political Conflict in Africa" type: "visualization" description: "The dynamic maps below have been drawn from ACLED Version 6." ...
Notice how you can define a gallery with one or more gallery items (each starting with a dash ‘-’) within the file as shown above. You can do the same for resources.
You can check if all the fields required by HDX are populated by calling check_required_fields. This will throw an exception if any fields are missing. Before the library posts data to HDX, it will call this method automatically. If you are creating or updating resources or gallery items through a dataset object rather than directly through resource or gallery item objects, then you should set the parameter ignore_dataset_id to True (because the dataset object already has a dataset id). An example usage:
resource.check_required_fields(ignore_dataset_id=False/True)
Once the HDX object is ready ie. it has all the required metadata, you simply call create_in_hdx eg.
dataset.create_in_hdx()
Existing HDX objects can be updated by calling update_in_hdx eg.
dataset.update_in_hdx()
You can delete HDX objects using delete_from_hdx and update an object that already exists in HDX with the method update_in_hdx. These do not take any parameters or return anything and throw exceptions for failures like the object to delete or update not existing.
Dataset Specific Operations
A dataset can have resources and a gallery.
If you wish to add resources or a gallery, you can supply a list and call the appropriate add_update_* function, for example:
resources = [{ 'name': xlsx_resourcename, 'format': 'xlsx', 'url': xlsx_url }, { 'name': csv_resourcename, 'format': 'zipped csv', 'url': csv_url }] for resource in resources: resource['description'] = resource['url'].rsplit('/', 1)[-1] dataset.add_update_resources(resources)
Calling add_update_resources creates a list of HDX Resource objects in dataset and operations can be performed on those objects.
To see the list of resources or gallery items, you use the appropriate get_* function eg.
resources = dataset.get_resources()
If you wish to add one resource or gallery item, you can supply a dictionary or object of the correct type and call the appropriate add_update_* function, for example:
dataset.add_update_resource(resource)
You can delete a Resource or GalleryItem object from the dataset using the appropriate delete_* function, for example:
dataset.delete_galleryitem('GALLERYITEM_TITLE')
You can get all the resources from a list of datasets as follows:
resources = Dataset.get_all_resources(datasets)
Dataset Date
Dataset date is a mandatory field in HDX. This date is the date of the data in the dataset, not to be confused with when data was last added/changed in the dataset. It can be a single date or a range.
To determine if a dataset date is a single date or range you can call:
dataset.get_dataset_date_type()
It returns ‘date’ for a single date or ‘range’ for a date range.
To get the dataset start date of a range or single date as a string, you can do as shown below. You can supply a date format. If you don’t, the output format will be an ISO 8601 date eg. 2007-01-25.
dataset_date = dataset.get_dataset_date('FORMAT')
To get the dataset end date of a range, you call:
dataset_date = dataset.get_dataset_end_date('FORMAT')
To set the dataset date, you pass a start date and end date for a range or just a start date for a single date. If you do not supply any dates format, the method will try to guess, which for unambiguous formats should be fine.
dataset.set_dataset_date('START DATE', 'END DATE', 'FORMAT')
To retrieve the dataset date or range as a datetime.datetime object, you can do:
dataset_date = dataset.get_dataset_date_as_datetime() dataset_date = dataset.get_dataset_end_date_as_datetime()
The method below allows you to set the dataset’s date using a datetime.datetime object:
dataset.set_dataset_date_from_datetime(START DATETIME.DATETIME OBJECT, END DATETIME.DATETIME OBJECT)
Expected Update Frequency
HDX datasets have a mandatory field, the expected update frequency. This is your best guess of how often the dataset will be updated.
The HDX web interface uses set frequencies:
Every day Every week Every two weeks Every month Every three months Every six months Every year Never
Although the API allows much greater granularity (a number of days), you are encouraged to use the options above (avoiding using Never if possible). To assist with this, you can use methods that allow this.
The following method will return a textual expected update frequency corresponding to what would be shown in the HDX web interface.
update_frequency = dataset.get_expected_update_frequency()
The method below allows you to set the dataset’s expected update frequency using one of the set frequencies above. (It also allows you to pass a number of days cast to a string, but this is discouraged.)
dataset.set_expected_update_frequency('UPDATE_FREQUENCY')
Transforming backwards and forwards between representations can be achieved with this function:
update_frequency = Dataset.transform_update_frequency('UPDATE_FREQUENCY')
Location
Each HDX dataset must have at least one location associated with it.
If you wish to get the current location (ISO 3 country codes), you can call the method below:
locations = dataset.get_location()
If you want to add a country, you do as shown below. If you don’t provide an ISO 3 country code, the text you give will be parsed and converted to an ISO 3 code if it is a valid country name.
dataset.add_country_location('ISO 3 COUNTRY CODE')
If you want to add a list of countries, the following method enables you to do it. If you don’t provide ISO 3 country codes, conversion will take place where valid country names are found.
dataset.add_country_locations(['ISO 3','ISO 3','ISO 3'...])
If you want to add a continent, you do it as follows. If you don’t provide a two letter continent code, then parsing and conversion will occur if a valid continent name is supplied.
dataset.add_continent_location('TWO LETTER CONTINENT CODE')
If you want to add any other kind of location (which must be in this list of valid locations), you do as shown below.
dataset.add_other_location('LOCATION')
Resource Specific Operations
You can download a resource using the download function eg.
url, path = resource.download('FOLDER_TO_DOWNLOAD_TO')
If you do not supply FOLDER_TO_DOWNLOAD_TO, then a temporary folder is used.
Before creating or updating a resource, it is possible to specify the path to a local file to upload to the HDX filestore if that is preferred over hosting the file externally to HDX. Rather than the url of the resource pointing to your server or api, in this case the url will point to a location in the HDX filestore containing a copy of your file.
resource.set_file_to_upload(file_to_upload='PATH_TO_FILE')
There is a getter to read the value back:
file_to_upload = resource.get_file_to_upload()
If you wish to set up the data preview feature in HDX and your file (HDX or externally hosted) is a csv, then you can call the create_datastore or update_datastore methods. If you do not pass any parameters, all fields in the csv will be assumed to be text.
resource.create_datastore() resource.update_datastore()
More fine grained control is possible by passing certain parameters and using other related methods eg.
resource.create_datastore(schema={'id': 'FIELD', 'type': 'TYPE'}, primary_key='PRIMARY_KEY_OF_SCHEMA', delete_first=0 (No) / 1 (Yes) / 2 (If no primary key), path='LOCAL_PATH_OF_UPLOADED_FILE') -> None: resource.create_datastore_from_yaml_schema(yaml_path='PATH_TO_YAML_SCHEMA', delete_first=0 (No) / 1 (Yes) / 2 (If no primary key), path='LOCAL_PATH_OF_UPLOADED_FILE') resource.update_datastore(schema={'id': 'FIELD', 'type': 'TYPE'}, primary_key='PRIMARY_KEY_OF_SCHEMA', path='LOCAL_PATH_OF_UPLOADED_FILE') -> None: resource.update_datastore_from_json_schema(json_path='PATH_TO_JSON_SCHEMA', path='LOCAL_PATH_OF_UPLOADED_FILE')
Working Example
Here we will create a working example from scratch.
First, pip install the library or alternatively add it to a requirements.txt file if you are comfortable with doing so as described above.
Next create a file called run.py and copy into it the code below.
#!/usr/bin/python # -*- coding: utf-8 -*- ''' Calls a function that generates a dataset and creates it in HDX. ''' import logging from hdx.facades.scraperwiki import facade from .my_code import generate_dataset logger = logging.getLogger(__name__) def main(): '''Generate dataset and create it in HDX''' dataset = generate_dataset() dataset.create_in_hdx() if __name__ == '__main__': facade(main, hdx_site='test')
The above file will create in HDX a dataset generated by a function called generate_dataset that can be found in the file my_code.py which we will now write.
Create a file my_code.py and copy into it the code below:
#!/usr/bin/python # -*- coding: utf-8 -*- ''' Generate a dataset ''' import logging from hdx.data.dataset import Dataset logger = logging.getLogger(__name__) def generate_dataset(): '''Create a dataset ''' logger.debug('Generating dataset!')
You can then fill out the function generate_dataset as required.
ACLED Example
A complete example can be found here: https://github.com/mcarans/hdxscraper-acled-africa
In particular, take a look at the files run.py, acled_africa.py and the config folder. If you run it unchanged, it will conflict with the existing dataset in the ACLED organisation! Therefore, you will need to modify the dataset name in acled_africa.py and change the organisation information such as owner_org to your organisation in config/hdx_dataset_static.yml.
The ACLED scraper creates a dataset in HDX for ACLED realtime data if it doesn’t already exist, populating all the required metadata. It then creates resources that point to urls of Excel and csv files for Realtime 2016 All Africa data (or updates the links and metadata if the resources already exist). Finally it creates a gallery item that points to these dynamic maps and graphs.
The first iteration of the ACLED scraper was written without the HDX Python library and it became clear looking at this and previous work by others that there are operations that are frequently required and which add unnecessary complexity to the task of coding against HDX. Simplifying the interface to HDX drove the development of the Python library and the second iteration of the scraper was built using it. With the interface using HDX terminology and mapping directly on to datasets, resources and gallery items, the ACLED scraper was faster to develop and is much easier to understand for someone inexperienced in how it works and what it is doing. The challenge with ACLED is that sometimes the urls that the resources point to have not been updated and hence do not work. In this situation, the extensive logging and transparent communication of errors is invaluable and enables action to be taken to resolve the issue as quickly as possible. The static metadata for ACLED is held in human readable files so if it needs to be modified, it is straightforward. This is another feature of the HDX Python library that makes putting data programmatically into HDX a breeze.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hdx-python-api-1.2.3.tar.gz
.
File metadata
- Download URL: hdx-python-api-1.2.3.tar.gz
- Upload date:
- Size: 94.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77dda2ee995330dcf974229d15d5572e0ab155877571cf1f60e639d6390dbc45 |
|
MD5 | 7053e3290e43ada9e48cb1ab0730d323 |
|
BLAKE2b-256 | fa9c437a15cffd28b4d192aef15b670bf99185b71221ef5f0f2732969511ce9c |
File details
Details for the file hdx_python_api-1.2.3-py2.py3-none-any.whl
.
File metadata
- Download URL: hdx_python_api-1.2.3-py2.py3-none-any.whl
- Upload date:
- Size: 54.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9e6b6fc31713f0675394f2533436dbe727e3173a1e72f9cda65cce0726c396c |
|
MD5 | f764616fbfd23c5b32a9ea03772ba08c |
|
BLAKE2b-256 | fe3e86e4454d54dae8103fb50a65f999f749e2f0f274bcd776f35e7a75177e98 |