Core data types used by OWID for managing data.
Project description
owid-catalog
A Pythonic API for working with OWID's data catalog.
Status: experimental, APIs likely to change
Overview
Our World in Data is building a new data catalog, with the goal of our datasets being reproducible and transparent to the general public. That project is our etl, which going forward will contain the recipes for all the datasets we republish.
This library allows you to query our data catalog programmatically, and get back data in the form of Pandas data frames, perfect for data pipelines or Jupyter notebook explorations.
graph TB
etl -->|reads| walden[upstream datasets]
etl -->|generates| s3[data catalog]
catalog[owid-catalog-py] -->|queries| s3
We would love feedback on how we can make this library and overall data catalog better. Feel free to send us an email at info@ourworldindata.org, or start a discussion on Github.
Quickstart
Install with pip install owid-catalog
. Then you can get data in two different ways.
Charts catalog
This API attempts to give you exactly the data you in a chart on our site.
from owid.catalog import charts
# get the data for one chart by URL
df = charts.get_data('https://ourworldindata.org/grapher/life-expectancy')
Notice that the last part of the URL is the chart's slug, its identifier, in this case life-expectancy
. Using the slug alone also works.
df = charts.get_data('life-expectancy')
To see what charts are available, you can list them all.
>>> slugs = charts.list_charts()
>>> slugs[:5]
['above-ground-biomass-in-forest-per-hectare',
'above-or-below-extreme-poverty-line-world-bank',
'abs-change-energy-consumption',
'absolute-change-co2',
'absolute-gains-in-mean-female-height']
Data science API
We also curate much more data than is available on our site. To access that in efficient binary (Feather) format, use our data science API.
This API is designed for use in Jupyter notebooks.
from owid import catalog
# look for Covid-19 data, return a data frame of matches
catalog.find('covid')
# load Covid-19 data from the Our World in Data namespace as a data frame
df = catalog.find('covid', namespace='owid').load()
There many be multiple versions of the same dataset in a catalog, each will have a unique path. To easily load the same dataset again, you should record its path and load it this way:
from owid import catalog
path = 'garden/ihme_gbd/2023-05-15/gbd_mental_health_prevalence_rate/gbd_mental_health_prevalence_rate'
rc = catalog.RemoteCatalog()
df = rc[path]
Development
You need Python 3.8+, poetry
and make
installed. Clone the repo, then you can simply run:
# run all unit tests and CI checks
make test
# watch for changes, then run all checks
make watch
Changelog
v0.3.10
- Add experimental chart data API in
owid.catalog.charts
- Add experimental chart data API in
v0.3.9
- Switch from isort & black & fake8 to ruff
v0.3.8
- Pin dataclasses-json==0.5.8 to fix error with python3.9
v0.3.7
- Fix bugs.
- Improve metadata propagation.
- Improve metadata YAML file handling, to have common definitions.
- Remove
DatasetMeta.origins
.
v0.3.6
- Fixed tons of bugs
processing.py
module with pandas-like functions that propagate metadata- Support for Dynamic YAML files
- Support for R2 alongside S3
v0.3.5
- Remove
catalog.frames
; useowid-repack
package instead - Relax dependency constraints
- Add optional
channel
argument toDatasetMeta
- Stop supporting metadata in Parquet format, load JSON sidecar instead
- Fix errors when creating new Table columns
- Remove
v0.3.4
- Bump
pyarrow
dependency to enable Python 3.11 support
- Bump
v0.3.3
- Add more arguments to
Table.__init__
that are often used in ETL - Add
Dataset.update_metadata
function for updating metadata from YAML file - Python 3.11 support via update of
pyarrow
dependency
- Add more arguments to
v0.3.2
- Fix a bug in
Catalog.__getitem__()
- Replace
mypy
type checker bypyright
- Fix a bug in
v0.3.1
- Sort imports with
isort
- Change black line length to 120
- Add
grapher
channel - Support path-based indexing into catalogs
- Sort imports with
v0.3.0
- Update
OWID_CATALOG_VERSION
to 3 - Support multiple formats per table
- Support reading and writing
parquet
files with embedded metadata - Optional
repack
argument when adding tables to dataset - Underscore
|
- Get
version
field fromDatasetMeta
init - Resolve collisions of
underscore_table
function - Convert
version
tostr
and load jsondimensions
- Update
v0.2.9
- Allow multiple channels in
catalog.find
function
- Allow multiple channels in
v0.2.8
- Update
OWID_CATALOG_VERSION
to 2
- Update
v0.2.7
- Split datasets into channels (
garden
,meadow
,open_numbers
, ...) and make garden default one - Add
.find_latest
method to Catalog
- Split datasets into channels (
v0.2.6
- Add flag
is_public
for public/private datasets - Enforce snake_case for table, dataset and variable short names
- Add fields
published_by
andpublished_at
to Source - Added a list of supported and unsupported operations on columns
- Updated
pyarrow
- Add flag
v0.2.5
- Fix ability to load remote CSV tables
v0.2.4
- Update the default catalog URL to use a CDN
v0.2.3
- Fix methods for finding and loading data from a
LocalCatalog
- Fix methods for finding and loading data from a
v0.2.2
- Repack frames to compact dtypes on
Table.to_feather()
- Repack frames to compact dtypes on
v0.2.1
- Fix key typo used in version check
v0.2.0
- Copy dataset metadata into tables, to make tables more traceable
- Add API versioning, and a requirement to update if your version of this library is too old
v0.1.1
- Add support for Python 3.8
v0.1.0
- Initial release, including searching and fetching data from a remote catalog
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 owid_catalog-0.3.10.tar.gz
.
File metadata
- Download URL: owid_catalog-0.3.10.tar.gz
- Upload date:
- Size: 50.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16322b5b148dba1bc035834baa1623d6d422b7295b84699072dce41878d264a6 |
|
MD5 | 9d64b21a6ef264a982c79702f50fc990 |
|
BLAKE2b-256 | ad1b1bf328836914a25947d7476f92e0aa679594acbce0f9fb39adcc9aca46e5 |
File details
Details for the file owid_catalog-0.3.10-py3-none-any.whl
.
File metadata
- Download URL: owid_catalog-0.3.10-py3-none-any.whl
- Upload date:
- Size: 55.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 032219e5f81475146fc75150ec727a04f13aef191a20eee7d2a02e63ab18ce14 |
|
MD5 | 74d95bfa5a278a1b2ffab16a2ab3c85d |
|
BLAKE2b-256 | 961510cefec758780cbb263fb60004c80634dc940169caa146d17277ec8cfb9f |