Pythonic access to UNESCO data
Project description
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.
The current implementation does not implement any caching mechanism as it is handled directly by the API. There are currently no rate limits, but there is a 100,000 record limit for each request. This package does not use any multithreading, to maintain the APIs recommended usage.
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 version 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 fiels 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()
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.
Credits
unesco_reader
was created with cookiecutter
and the
py-pkgs-cookiecutter
template.
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 unesco_reader-3.0.0.tar.gz
.
File metadata
- Download URL: unesco_reader-3.0.0.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 356c819683a1010c46f7c0373cef1c27ee442e8de7e58ce7ffc07ed88045cb83 |
|
MD5 | 5fb9a6b31b4be0d672f687e87a5a72f8 |
|
BLAKE2b-256 | 1887f2595902265f6b966469d76b6b616298dbd06d3d9f90858eb5faaf5d168c |
File details
Details for the file unesco_reader-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: unesco_reader-3.0.0-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ad169b62ed1086e461e81866181036d873d361d7b76111b9a267100d98c4737 |
|
MD5 | 59049785dc16cbe5b919ea3e1020d03a |
|
BLAKE2b-256 | 72a7297b2197bdb5b86b314d439f83db2b9babf73e024886d917a1250ec2698d |