Skip to main content

Python library for downloading UNICEF indicators via SDMX API

Project description

unicefData - Python Package

PyPI version Python Tests Python 3.9+ Downloads License: MIT

Python component of the trilingual unicefData library for downloading UNICEF SDG indicators via SDMX API

This is the Python implementation of the unicefData package. For other implementations, see the links below.

Other languages: R | Stata | Main README


Installation

pip install unicefdata

For development:

git clone https://github.com/unicef-drp/unicefData.git
cd unicefData/python
pip install -e ".[dev]"

Verify Installation

import unicefdata
print(unicefdata.__version__)
2.2.2

What's New in 2.2.2

  • UNICEFSDMXClient dataflow resolution fixed: fetch_indicator() now auto-detects the correct dataflow from metadata instead of always defaulting to GLOBAL_DATAFLOW, consistent with unicefData()

What's New in 2.2.1

  • Bundled metadata paths corrected: Startup warnings about missing fallback sequences and indicators metadata are resolved
  • Codelists filename fixed: MetadataManager now correctly loads _unicefdata_codelists.yaml
  • Category lookup fixed: list_categories() and search_indicators(category=...) now return correct results instead of all UNKNOWN

See CHANGELOG.md for complete details.

What's New in 2.2.0

  • 328+ automated tests across 11 test families with deterministic fixtures
  • Full CI matrix: Python 3.9–3.12 on Ubuntu / macOS / Windows
  • Bug fixes: Sex filter for full-dataflow, None indicator handling, retry logic
  • Input validation: Filters empty/whitespace indicators with helpful error messages

Quick Start

Search for Indicators

from unicefdata import search_indicators, list_categories

# List all categories
list_categories()
==================================================
  Available Indicator Categories
==================================================

  CATEGORY                       COUNT
--------------------------------------------------
  NUTRITION                        112
  CAUSE_OF_DEATH                    83
  CHILD_RELATED_SDG                 77
  WASH_HOUSEHOLDS                   64
  EDUCATION_UIS_SDG                 62
  PT                                52
  GLOBAL_DATAFLOW                   50
  CHLD_PVTY                         43
  CME                               39
  HIV_AIDS                          38
  MNCH                              38
  DM                                31
  MG                                26
  IMMUNISATION                      18
  GENDER                            16
  ECON                              13
  FUNCTIONAL_DIFF                   12
  SOC_PROTECTION                    10
  ECD                                8
--------------------------------------------------
  TOTAL                            792

  Use search_indicators(category='CATEGORY_NAME') to see indicators
# Search by keyword
search_indicators("mortality")
====================================================================================================
  UNICEF Indicators matching 'mortality'
====================================================================================================

  Found 24 indicator(s)
----------------------------------------------------------------------------------------------------
  CODE                  CATEGORY           NAME                                 DESCRIPTION
----------------------------------------------------------------------------------------------------
  CME_MRM0              CME                Neonatal mortality rate              Probability of d..
  CME_MRY0              CME                Infant mortality rate                Probability of d..
  CME_MRY0T4            CME                Under-five mortality rate            Probability of d..
  CME_MRY5T14           CME                Mortality rate (children aged 5 t..  Probability of d..
  MNCH_MMR              MNCH               Maternal mortality ratio (number ..  Maternal mortali..
  ...
----------------------------------------------------------------------------------------------------
  Usage tips:
  - unicefData(indicator='CODE') to fetch data for an indicator
  - search_indicators(category='CME') to browse by category
# Search within a category
search_indicators(category="CME")
search_indicators("rate", category="CME")

Download Data

from unicefdata import unicefData

# Fetch under-5 mortality rate (dataflow auto-detected)
df = unicefData(
    indicator="CME_MRY0T4",
    countries=["ALB", "USA", "BRA"],
    year="2015:2023"   # range, single year, or list
)

print(df.shape)
print(df[["iso3", "country", "period", "indicator", "value"]].to_string(index=False))
(27, 21)

iso3       country  period  indicator      value
 ALB       Albania  2015.0 CME_MRY0T4   9.586263
 ALB       Albania  2016.0 CME_MRY0T4   9.400753
 ALB       Albania  2017.0 CME_MRY0T4   9.336307
 ALB       Albania  2018.0 CME_MRY0T4   9.344314
 ALB       Albania  2019.0 CME_MRY0T4   9.386670
 ALB       Albania  2020.0 CME_MRY0T4   9.435272
 ALB       Albania  2021.0 CME_MRY0T4   9.456832
 ALB       Albania  2022.0 CME_MRY0T4   9.436385
 ALB       Albania  2023.0 CME_MRY0T4   9.357239
 BRA        Brazil  2015.0 CME_MRY0T4  15.963330
 BRA        Brazil  2016.0 CME_MRY0T4  16.771457
 ...
 USA United States  2023.0 CME_MRY0T4   6.482592
# Summary statistics
print(df["value"].describe().round(2))
count    27.00
mean     10.40
std       3.70
min       6.46
25%       6.64
50%       9.40
75%      14.66
max      16.77
Name: value, dtype: float64
# Cross-country pivot table (countries × years)
print(df.groupby(["iso3", "period"])["value"].first().unstack().round(1))
period  2015.0  2016.0  2017.0  2018.0  2019.0  2020.0  2021.0  2022.0  2023.0
iso3
ALB        9.6     9.4     9.3     9.3     9.4     9.4     9.5     9.4     9.4
BRA       16.0    16.8    15.4    15.2    15.0    14.9    14.7    14.6    14.4
USA        6.8     6.7     6.6     6.5     6.5     6.5     6.5     6.5     6.5

View Dataflow Schema

from unicefdata import dataflow_schema, print_dataflow_schema

print_dataflow_schema(dataflow_schema("CME"))
----------------------------------------------------------------------
Dataflow Schema: CME
----------------------------------------------------------------------

Name: Child Mortality
Version: 1.0
Agency: UNICEF

Dimensions (4):
  REF_AREA
  INDICATOR
  SEX
  WEALTH_QUINTILE

Attributes (7):
  DATA_SOURCE
  COUNTRY_NOTES
  REF_PERIOD
  UNIT_MEASURE
  LOWER_BOUND
  UPPER_BOUND
  OBS_STATUS
----------------------------------------------------------------------

Post-Production Options

Output Formats

# Long format (default) — one row per country × year
df = unicefData(indicator="CME_MRY0T4", countries=["ALB", "USA", "BRA"],
                year="2020:2022", format="long")
print(df[["iso3", "country", "period", "value"]].to_string(index=False))
iso3       country  period      value
 ALB       Albania  2020.0   9.435272
 ALB       Albania  2021.0   9.456832
 ALB       Albania  2022.0   9.436385
 BRA        Brazil  2020.0  14.873612
 BRA        Brazil  2021.0  14.723535
 BRA        Brazil  2022.0  14.588250
 USA United States  2020.0   6.469871
 USA United States  2021.0   6.464968
 USA United States  2022.0   6.473319
# Wide format — years as columns
df = unicefData(indicator="CME_MRY0T4", countries=["ALB", "USA", "BRA"],
                year="2020:2022", format="wide")
print(df[["iso3", "country", 2020.0, 2021.0, 2022.0]].to_string(index=False))
iso3       country    2020.0    2021.0    2022.0
 ALB       Albania  9.435272  9.456832  9.436385
 BRA        Brazil 14.873612 14.723535 14.588250
 USA United States  6.469871  6.464968  6.473319
# Wide indicators — indicators as columns
df = unicefData(
    indicator=["CME_MRY0T4", "CME_MRM0"],
    countries=["ALB", "USA", "BRA"],
    year="2020:2022",
    format="wide_indicators"
)
print(df[["iso3", "country", "period", "CME_MRY0T4", "CME_MRM0"]].to_string(index=False))
iso3       country  period  CME_MRY0T4  CME_MRM0
 ALB       Albania  2020.0    9.435272  7.185830
 ALB       Albania  2021.0    9.456832  7.125219
 ALB       Albania  2022.0    9.436385  6.998704
 BRA        Brazil  2020.0   14.873612  9.163120
 BRA        Brazil  2021.0   14.723535  8.893245
 BRA        Brazil  2022.0   14.588250  8.281859
 USA United States  2020.0    6.469871  3.642096
 USA United States  2021.0    6.464968  3.520667
 USA United States  2022.0    6.473319  3.477007

Latest Value Per Country

df = unicefData(
    indicator="CME_MRY0T4",
    countries=["ALB", "BRA", "DEU", "IND", "USA"],
    latest=True
)
print(df[["iso3", "country", "period", "value"]].to_string(index=False))
iso3       country  period      value
 ALB       Albania  2024.0   9.227080
 BRA        Brazil  2024.0  14.216972
 DEU       Germany  2024.0   3.711222
 IND         India  2024.0  26.579900
 USA United States  2024.0   6.472463

Most Recent Values (MRV)

df = unicefData(indicator="CME_MRY0T4", countries=["ALB", "USA", "BRA"], mrv=3)
print(df[["iso3", "country", "period", "value"]].sort_values(["iso3", "period"]).to_string(index=False))
iso3       country  period      value
 ALB       Albania  2022.0   9.436385
 ALB       Albania  2023.0   9.357239
 ALB       Albania  2024.0   9.227080
 BRA        Brazil  2022.0  14.588250
 BRA        Brazil  2023.0  14.424723
 BRA        Brazil  2024.0  14.216972
 USA United States  2022.0   6.473319
 USA United States  2023.0   6.482592
 USA United States  2024.0   6.472463

Circa (Nearest Year)

# Returns the closest available observation to the target year
df = unicefData(
    indicator="CME_MRY0T4",
    countries=["ALB", "USA", "BRA"],
    year=2015,
    circa=True
)
print(df[["iso3", "country", "period", "value"]].to_string(index=False))
iso3       country  period     value
 ALB       Albania  2015.0  9.586263
 BRA        Brazil  2015.0 15.963330
 USA United States  2015.0  6.752855

Add Metadata

df = unicefData(
    indicator="CME_MRY0T4",
    countries=["ALB", "BRA", "IND", "NGA", "USA"],
    latest=True,
    add_metadata=["region", "income_group"]
)
print(df[["iso3", "country", "period", "value", "region", "income_group"]].to_string(index=False))
iso3       country  period      value                      region        income_group
 ALB       Albania  2024.0   9.227080     Europe and Central Asia Upper middle income
 BRA        Brazil  2024.0  14.216972 Latin America and Caribbean Upper middle income
 IND         India  2024.0  26.579900                  South Asia Lower middle income
 NGA       Nigeria  2024.0 115.649434          Sub-Saharan Africa Lower middle income
 USA United States  2024.0   6.472463               North America         High income
# Frequency table by income group
print(df.groupby("income_group")["value"].agg(["count", "mean", "min", "max"]).round(2))
                    count    mean     min      max
income_group
High income             1    6.47    6.47     6.47
Lower middle income     2   71.11   26.58   115.65
Upper middle income     2   11.72    9.23    14.22

Combining Options

df = unicefData(
    indicator=["CME_MRY0T4", "CME_MRM0"],
    countries=["ALB", "BRA", "IND", "NGA", "USA"],
    format="wide_indicators",
    latest=True,
    add_metadata=["region", "income_group"],
    dropna=True
)
print(df[["iso3", "country", "CME_MRY0T4", "CME_MRM0", "region", "income_group"]].to_string(index=False))
iso3       country  CME_MRY0T4  CME_MRM0                      region        income_group
 ALB       Albania    9.227080  6.735194     Europe and Central Asia Upper middle income
 BRA        Brazil   14.216972  7.124973 Latin America and Caribbean Upper middle income
 IND         India   26.579900 16.659252                  South Asia Lower middle income
 NGA       Nigeria  115.649434 39.045723          Sub-Saharan Africa Lower middle income
 USA United States    6.472463  3.652385               North America         High income

Visualizations

The following examples use matplotlib, which is not a required dependency but is commonly available. Install with pip install matplotlib if needed.

Time-Series Line Chart

import matplotlib.pyplot as plt
from unicefdata import unicefData

df = unicefData(
    indicator="CME_MRY0T4",
    countries=["ALB", "BRA", "DEU", "IND", "NGA", "USA"],
    year="2000:2024"
)

country_colors = {
    "ALB": "#4CAF50", "BRA": "#FF9800", "DEU": "#2196F3",
    "IND": "#9C27B0", "NGA": "#F44336", "USA": "#00BCD4"
}

fig, ax = plt.subplots(figsize=(10, 5))
for iso3, grp in df.groupby("iso3"):
    grp_sorted = grp.sort_values("period")
    ax.plot(grp_sorted["period"], grp_sorted["value"],
            marker="o", markersize=3,
            color=country_colors.get(iso3, "#999"),
            label=grp_sorted["country"].iloc[0])

ax.set_title("Under-5 Mortality Rate (CME_MRY0T4), 2000–2024", fontweight="bold")
ax.set_xlabel("Year")
ax.set_ylabel("Deaths per 1,000 live births")
ax.legend(loc="upper right", fontsize=9)
ax.grid(True, alpha=0.3)
plt.tight_layout()
plt.show()

Time-series line chart: under-5 mortality rate 2000–2024

Cross-Country Bar Chart (Latest Values)

import matplotlib.pyplot as plt
from matplotlib.patches import Patch
from unicefdata import unicefData

df = unicefData(
    indicator="CME_MRY0T4",
    countries=["ALB", "BRA", "CHN", "DEU", "ETH", "IND", "MEX", "NGA", "USA", "ZAF"],
    latest=True,
    add_metadata=["income_group"]
)
df_sorted = df.sort_values("value", ascending=True)

income_colors = {
    "High income":          "#2196F3",
    "Upper middle income":  "#4CAF50",
    "Lower middle income":  "#FF9800",
    "Low income":           "#F44336"
}

fig, ax = plt.subplots(figsize=(9, 5))
bars = ax.barh(
    df_sorted["country"],
    df_sorted["value"],
    color=[income_colors.get(ig, "#999") for ig in df_sorted["income_group"]]
)
ax.bar_label(bars, fmt="%.1f", padding=4, fontsize=9)
handles = [Patch(color=c, label=l) for l, c in income_colors.items()
           if l in df_sorted["income_group"].values]
ax.legend(handles=handles, title="Income group", fontsize=8)
ax.set_title("Under-5 Mortality Rate — Latest Available Year", fontweight="bold")
ax.set_xlabel("Deaths per 1,000 live births")
ax.grid(axis="x", alpha=0.3)
plt.tight_layout()
plt.show()

Bar chart: under-5 mortality rate by country, coloured by income group

Scatter Plot: Two Indicators by Country

import numpy as np
import matplotlib.pyplot as plt
from unicefdata import unicefData

df = unicefData(
    indicator=["CME_MRY0T4", "CME_MRM0"],
    format="wide_indicators",
    latest=True,
    add_metadata=["income_group"],
    dropna=True
)

income_colors = {
    "High income":          "#2196F3",
    "Upper middle income":  "#4CAF50",
    "Lower middle income":  "#FF9800",
    "Low income":           "#F44336"
}

fig, ax = plt.subplots(figsize=(8, 6))
for ig, grp in df.groupby("income_group"):
    ax.scatter(grp["CME_MRM0"], grp["CME_MRY0T4"],
               color=income_colors.get(ig, "#999"), label=ig, alpha=0.7, s=50)

x, y = df["CME_MRM0"].values, df["CME_MRY0T4"].values
m, b = np.polyfit(x, y, 1)
xline = np.linspace(x.min(), x.max(), 100)
ax.plot(xline, m * xline + b, color="#333", linewidth=1.2, linestyle="--", alpha=0.6, label="Trend")

ax.set_xlabel("Neonatal Mortality Rate (CME_MRM0)")
ax.set_ylabel("Under-5 Mortality Rate (CME_MRY0T4)")
ax.set_title("Neonatal vs Under-5 Mortality — All Countries, Latest Values", fontweight="bold")
ax.legend(title="Income group", fontsize=8)
ax.grid(True, alpha=0.3)
plt.tight_layout()
plt.show()

Scatter plot: neonatal vs under-5 mortality, all countries, coloured by income group


Advanced: UNICEFSDMXClient

For lower-level access, use UNICEFSDMXClient directly.

from unicefdata import UNICEFSDMXClient

client = UNICEFSDMXClient()

# Fetch a single indicator
df = client.fetch_indicator(
    "CME_MRY0T4",
    countries=["ALB", "USA"],
    start_year=2020,
    end_year=2023
)
print(df[["iso3", "country", "period", "indicator", "value"]].to_string(index=False))
iso3       country  period  indicator     value
 ALB       Albania  2020.0 CME_MRY0T4  9.435272
 ALB       Albania  2021.0 CME_MRY0T4  9.456832
 ALB       Albania  2022.0 CME_MRY0T4  9.436385
 ALB       Albania  2023.0 CME_MRY0T4  9.357239
 USA United States  2020.0 CME_MRY0T4  6.469871
 USA United States  2021.0 CME_MRY0T4  6.464968
 USA United States  2022.0 CME_MRY0T4  6.473319
 USA United States  2023.0 CME_MRY0T4  6.482592
# Fetch multiple indicators combined into one DataFrame
df = client.fetch_multiple_indicators(
    ["CME_MRY0T4", "CME_MRM0"],
    countries=["ALB", "USA"],
    combine=True
)
print(f"Shape: {df.shape}")
print(df.groupby(["iso3", "indicator"])["value"].agg(["count", "mean"]).round(2))
Shape: (226, 21)

                        count    mean
iso3 indicator
ALB  CME_MRM0            72.0  12.89
     CME_MRY0T4          72.0  18.79
USA  CME_MRM0            41.0   5.48
     CME_MRY0T4          41.0   9.15
# Configurable timeout
client = UNICEFSDMXClient(timeout=120)

API Reference

unicefData()

Main function for fetching UNICEF indicator data.

Parameter Type Default Description
indicator str/list required Indicator code(s)
dataflow str auto-detect SDMX dataflow ID
countries list None (all) ISO3 country codes
year int/str/list None (all) Year(s)
circa bool False Find closest year
sex str "_T" Sex filter
max_retries int 3 Retry attempts

Post-Production Parameters

Parameter Type Default Description
format str "long" "long", "wide", "wide_indicators"
latest bool False Keep only latest per country
mrv int None Keep N most recent values
add_metadata list None Metadata to add
dropna bool False Remove missing values
simplify bool False Keep only essential columns

Other Functions

Function Description
search_indicators(query, category, limit) Search indicators
list_categories() List all categories
list_dataflows() List available dataflows
dataflow_schema(dataflow) Get dataflow schema
clear_cache() Clear all 5 cache layers

Time Period Handling

Monthly periods are converted to decimal years:

Original Decimal Calculation
2020 2020.0 Integer year
2020-01 2020.0833 2020 + 1/12
2020-06 2020.5000 2020 + 6/12

Common Indicators

Child Mortality (SDG 3.2)

  • CME_MRM0 - Neonatal mortality rate
  • CME_MRY0T4 - Under-5 mortality rate

Nutrition (SDG 2.2)

  • NT_ANT_HAZ_NE2_MOD - Stunting prevalence
  • NT_ANT_WHZ_NE2 - Wasting prevalence

Immunization (SDG 3.b)

  • IM_DTP3 - DTP3 coverage
  • IM_MCV1 - Measles coverage

WASH (SDG 6)

  • WS_PPL_W-SM - Safely managed water
  • WS_PPL_S-SM - Safely managed sanitation

Child Protection

  • PT_CHLD_Y0T4_REG - Birth registration
  • PT_F_20-24_MRD_U18_TND - Child marriage

Error Handling

from unicefdata import SDMXNotFoundError, SDMXBadRequestError, SDMXTimeoutError

try:
    df = unicefData(indicator="INVALID_CODE")
except SDMXNotFoundError as e:
    print(f"Indicator not found: {e}")
except SDMXBadRequestError as e:
    print(f"Invalid request: {e}")
except SDMXTimeoutError as e:
    print(f"Request timed out: {e}")

Troubleshooting

Connection Errors

# Increase retry attempts
df = unicefData(indicator="CME_MRY0T4", max_retries=5)

Stale Cache

from unicefdata import clear_cache
clear_cache()  # Clears all 5 cache layers

Examples

See examples/ folder:

  • 00_quick_start.py - Basic usage
  • 01_indicator_discovery.py - Finding indicators
  • 02_sdg_indicators.py - SDG queries
  • 03_data_formats.py - Output formats
  • 04_metadata_options.py - Metadata enrichment
  • 05_advanced_features.py - Advanced options

Version History

See CHANGELOG.md for complete changelog.


Dependencies

  • pandas
  • requests
  • pyyaml

Optional: pip install "unicefdata[excel]" for Excel export support.


Acknowledgments

This package was developed at the UNICEF Data and Analytics Section. The author gratefully acknowledges the collaboration of Lucas Rodrigues, Yang Liu, and Karen Avanesian, whose technical contributions and feedback were instrumental in the development of this Python package.

Special thanks to Yves Jaques, Alberto Sibileau, and Daniele Olivotti for designing and maintaining the UNICEF SDMX data warehouse infrastructure that makes this package possible.

The author also acknowledges the UNICEF database managers and technical teams who ensure data quality, as well as the country office staff and National Statistical Offices whose data collection efforts make this work possible.

Development of this package was supported by UNICEF institutional funding for data infrastructure and statistical capacity building. The author also acknowledges UNICEF colleagues who provided testing and feedback during development, as well as the broader open-source Python community.

Development was assisted by AI coding tools (GitHub Copilot, Claude). All code has been reviewed, tested, and validated by the package maintainers.

Disclaimer

This package is provided for research and analytical purposes.

The unicefData package provides programmatic access to UNICEF's public data warehouse. While the author is affiliated with UNICEF, this package is not an official UNICEF product and the statements in this documentation are the views of the author and do not necessarily reflect the policies or views of UNICEF.

Data accessed through this package comes from the UNICEF Data Warehouse. Users should verify critical data points against official UNICEF publications at data.unicef.org.

This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or UNICEF be liable for any claim, damages or other liability arising from the use of this software.

The designations employed and the presentation of material in this package do not imply the expression of any opinion whatsoever on the part of UNICEF concerning the legal status of any country, territory, city or area or of its authorities, or concerning the delimitation of its frontiers or boundaries.

Data Citation and Provenance

Important Note on Data Vintages

Official statistics are subject to revisions as new information becomes available and estimation methodologies improve. UNICEF indicators are regularly updated based on new surveys, censuses, and improved modeling techniques. Historical values may be revised retroactively to reflect better information or methodological improvements.

For reproducible research and proper data attribution, users should:

  1. Document the indicator code - Specify the exact SDMX indicator code(s) used (e.g., CME_MRY0T4)
  2. Record the download date - Note when data was accessed (e.g., "Data downloaded: 2026-03-20")
  3. Cite the data source - Reference both the package and the UNICEF Data Warehouse
  4. Archive your dataset - Save a copy of the exact data used in your analysis

Example citation for data used in research:

Under-5 mortality data (indicator: CME_MRY0T4) accessed from UNICEF Data Warehouse via unicefData Python package (v2.2.2) on 2026-03-20. Data available at: https://sdmx.data.unicef.org/

This practice ensures that others can verify your results and understand any differences that may arise from data updates. For official UNICEF statistics in publications, always cross-reference with the current version at data.unicef.org.

Citation

If you use this package, please cite:

Azevedo, Joao Pedro (2026). "unicefdata: Unified access to UNICEF indicators across R, Python, and Stata." Mimeo, UNICEF Chief Statistician Office.


Development

Development assisted by AI coding tools (GitHub Copilot, Claude). All code reviewed and validated by maintainers.


Author

Joao Pedro Azevedo (@jpazvd) Chief Statistician, UNICEF Data and Analytics Section Email: jpazevedo@unicef.org Website: jpazvd.github.io


License

MIT License - See LICENSE

Contributing

See CONTRIBUTING.md for detailed guidelines.

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

unicefdata-2.3.2.tar.gz (376.5 kB view details)

Uploaded Source

Built Distribution

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

unicefdata-2.3.2-py3-none-any.whl (419.8 kB view details)

Uploaded Python 3

File details

Details for the file unicefdata-2.3.2.tar.gz.

File metadata

  • Download URL: unicefdata-2.3.2.tar.gz
  • Upload date:
  • Size: 376.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for unicefdata-2.3.2.tar.gz
Algorithm Hash digest
SHA256 bf26b55a1651fa53f4844a192835c3b99fabf597c351da644e60015a66008a7c
MD5 d21f6d063ebfad3faf299703bd5a6f33
BLAKE2b-256 6e1dba4a1e150ff2cd9f2c48b3d29814ef8d5957a71b47e14ea7cb85a836b36c

See more details on using hashes here.

File details

Details for the file unicefdata-2.3.2-py3-none-any.whl.

File metadata

  • Download URL: unicefdata-2.3.2-py3-none-any.whl
  • Upload date:
  • Size: 419.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for unicefdata-2.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 94a0bc149e0a7381406e7d30b03e87b087a61b839b956304a63520a01b6963e3
MD5 0a2a7c09d861e9a0fb1499dd8da76fd1
BLAKE2b-256 f17ee6dec3183c7d0e7a2c5b1b7a3ee3b064cf3f4fa24e56c6edbaebfe8aea60

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