Skip to main content

Pythonic access to UNESCO data

Project description

PyPI PyPI - Python Version Documentation Status codecov Black

unesco_reader

Pythonic access to UNESCO data

unesco_reader provides simple and convenient access to data published by the UNESCO Institute of Statistics (UIS). It offers a simple wrapper for the UIS API endpoints, and offers added convenience including error handling, filtering ability, and basic pandas support.

Note: As of version v3.0.0 the package does not support access to bulk data files. Previous versions of the package were developed before the release of the API and offered support for accessing the bulk data files. This functionality has been deprecated in favor of the API for programmatic access to the data. To access bulk data files, please visit the bulk data download page.

Installation

$ pip install unesco-reader

Simple Usage

Import the package:

import unesco_reader as uis

Get data for an indicator and geo unit:

df = uis.get_data("CR.1", "ZWE")

At least a country or an indicator must be requested. Currently, there is a 100,000 record limit for the API response. If this limit is exceeded an error is raised. To request more data, please make multiple requests with fewer parameters.

Get data with additional fields like indicator and geo unit names, and footnotes:

df = uis.get_data("CR.1", "ZWE", footnotes=True, labels=True)

Get metadata for an indicator:

metadata = uis.get_metadata("CR.1")

Get metadata with disaggregations and glossary terms:

metadata = uis.get_metadata("CR.1", disaggregations=True, glossaryTerms=True)

Get available indicators:

indicators = uis.available_indicators()

Get available indicators for a specific theme and with data starting at least in 2010:

indicators = uis.available_indicators(theme="EDUCATION", minStart=2010)

Get available geo units:

geo_units = uis.available_geo_units()

Get available regional geo units:

geo_units = uis.available_geo_units(geoUnitType="REGIONAL")

Get available themes:

themes = uis.available_themes()

Get available data versions:

versions = uis.available_versions()

Get the default data version:

default_version = uis.default_version()

Caching

The UIS API includes caching logic. This package also includes in memory caching for API definition endpoints (indicators, geo units, and versions) for the lifetime of the session. This avoids redundant network requests when making multiple queries. To manually clear the cache (e.g. to pick up newly published data versions mid-session):

uis.clear_cache()

Data requests (get_data) are never cached and always fetch fresh results from the API (which may be cached by the API itself, depending on the endpoint and parameters).

Retry Configuration

By default, transient network errors are retried once. To change the number of retries:

uis.set_max_retries(3)  # retry up to 3 times
uis.set_max_retries(0)  # disable retries

Rate Limiting and Asynchronous Support

There are currently no API rate limits, but there is a 100,000 record limit for each request. This package does not use any multithreading or chunking responses, to maintain the APIs recommended usage. Aggregated flat file data can be accessed through the Bulk Data Download page.

Basic wrapper usage

unesco_reader offers out-of-the-box convenience for accessing data through the UIS API. If you need more control, you can access the thin wrapper around the API endpoint through the api module.

Contributing

All contributions are welcome! If you find a bug, or have a suggestion for a new feature, or an improvement on the documentation please open an issue. Since this project is under current development, please check open issues and make sure the issue has not been raised already.

A detailed overview of the contribution process can be found here. By contributing to this project, you agree to abide by its terms.

License

unesco_reader was created by Luca Picci. It is licensed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unesco_reader-3.1.1.tar.gz (168.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

unesco_reader-3.1.1-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file unesco_reader-3.1.1.tar.gz.

File metadata

  • Download URL: unesco_reader-3.1.1.tar.gz
  • Upload date:
  • Size: 168.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for unesco_reader-3.1.1.tar.gz
Algorithm Hash digest
SHA256 8d5b98bb446e67abcf2ee7d5a694a776587fcc53e1ca6ae34e5979dd5ad7a585
MD5 6169c516fdb77ee63eb39de057b238ec
BLAKE2b-256 0798098b80b6ca2766194440b590f35809703ed8e39ecd9d4075320df1366d8e

See more details on using hashes here.

File details

Details for the file unesco_reader-3.1.1-py3-none-any.whl.

File metadata

  • Download URL: unesco_reader-3.1.1-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for unesco_reader-3.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 36843cbf8496f5ecb099ddd09e8fd2be084f46ccfb92e45d80c767dc15278031
MD5 4139ff79af4e362547f4d48aeee8de24
BLAKE2b-256 7a894abee6c1baf24db0a80397c32ffb1c26076534c4b9fd7e34366992756e25

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page