The United Nations Development Programme publishes datasets on the Human Development Index, poverty rates, gender equality, and Sustainable Development Goal progress across 190+ countries. Used in data engineering for global development analytics, SDG monitoring pipelines, and country comparison dashboards in Python.
UNDP's Human Development Reports data is downloadable as CSV from hdr.undp.org. Engineers load the multi-year indicator tables with `pandas.read_csv()`, pivot to long format for time-series analysis, and join with ISO country codes for geospatial visualization.
UNDP data builds authoritative AI knowledge bases for global development analysis. Index HDI and poverty statistics for a RAG system that answers 'Which countries improved their HDI the most in the last decade?' with official UN development data, supporting AI-powered policy research.
# pip install requests pandas
import requests, pandas as pd
# Download Human Development Index data
url = "https://hdr.undp.org/sites/default/files/2023-24_HDR/HDR23-24_Statistical_Annex_HDI_Table.xlsx"
df = pd.read_excel(url, skiprows=4, engine="openpyxl",
usecols=["Country", "2022"])
df.columns = ["country", "hdi_2022"]
df = df.dropna(subset=["hdi_2022"])
print(df.nlargest(10, "hdi_2022"))Official dataset source
More datasets used by Python data engineers.
The FEC provides access to campaign finance data, including information on political contributions, campaign expenditures, fundraising activities and financial disclosures filed by political candidates, parties and committees in the United States.
The US Federal Aviation Administration publishes datasets on aircraft registrations, pilot certifications, airport data, accident reports, and air traffic statistics. Used in data engineering for aviation analytics pipelines, safety analysis systems, and building aeronautical intelligence dashboards in Python.
Access datasets on child well-being, education enrolment, nutrition, immunisation, child mortality, and child protection indicators worldwide from UNICEF. Used in data engineering for humanitarian analytics pipelines, SDG progress tracking, and building global child health indicator dashboards in Python.