https://github.com/epogrebnyak/weo-reader
Python client to read IMF World Economic Outlook (WEO) dataset as pandas dataframe.
https://github.com/epogrebnyak/weo-reader
country-statistics economic-data economic-datasets international-economics macroeconomics weo
Last synced: 9 months ago
JSON representation
Python client to read IMF World Economic Outlook (WEO) dataset as pandas dataframe.
- Host: GitHub
- URL: https://github.com/epogrebnyak/weo-reader
- Owner: epogrebnyak
- Created: 2019-12-10T16:02:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T19:20:35.000Z (over 1 year ago)
- Last Synced: 2025-01-20T02:34:22.643Z (9 months ago)
- Topics: country-statistics, economic-data, economic-datasets, international-economics, macroeconomics, weo
- Language: Jupyter Notebook
- Homepage:
- Size: 6.95 MB
- Stars: 32
- Watchers: 3
- Forks: 12
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# weo-reader
[](https://pypi.org/project/weo/)
[](https://github.com/epogrebnyak/weo-reader/actions)
[](https://pepy.tech/project/weo/week)[](https://colab.research.google.com/drive/1Dvl1N3c9uRUEulm-Kto9zqW_VCj0YtzV)
[](https://share.streamlit.io/epogrebnyak/weo-reader)This is a Python client to download [IMF World Economic Outlook Report][weo] dataset as [pandas](https://pandas.pydata.org/) dataframes by release dates. You can explore:
- single country macroeconomic data and forecast,
- macro variables across countries for a given year,
- country-year panel for single macro variable.## Testimonials
> Thanks for your contribution and am happy to be able to work off of your codes. This is really awesome.
> I have been using your WEO API which is very great!
> I wanted to express our appreciation for your package, `weo-reader`. We have used the package extensively in our work. It has been an invaluable tool for efficiently updating our database and conducting research.
## Dataset releases (vintages)
Dataset releases (vintages) are available back to 2007, the reported data goes back to 1980, forecast is three years ahead.
| Release | Date |
| :--------------- | :-----------:|
| Latest confirmed | April 2024 |
| First | October 2007 |Confirmed release is tested to be processed with `weo`.
Usually, if something breaks in a new release users raise an [issue here](https://github.com/epogrebnyak/weo-reader/issues).[weo]: https://www.imf.org/en/Publications/WEO

## Install
The program runs with Python 3.9 or higher.
To install:
```
pip install weo
```Latest version:
```
pip install git+https://github.com/epogrebnyak/weo-reader.git
```## First glance
Get US inflation forecast from April 2022 semiannual WEO release.
```python
from weo import download, WEOpath, url = download(2022, 1)
# weo_2022_1.csv 18.8Mb
# Downloaded 2022-Apr WEO datasetdf_cpi = WEO(path).inflation()
print(df_cpi.USA.tail(8))
# USA
# 2020 1.549
# 2021 7.426
# 2022 5.329
# 2023 2.337
# 2024 2.096
# 2025 1.970
# 2026 1.983
# 2027 2.017
```## Step 1. Download data
Save data from IMF web site as local file. Specify year
and release:```python
import weoweo.download(year=2020, release="Oct", filename="weo.csv")
```- You can access WEO releases starting October 2007 with this client.
- WEO is normally released in April and October, one exception is September 2011.
- Release is referenced by:
- number `1` or `2`;
- month `'Apr'` or `'Oct'`, and `'Sep'` in 2011.Your can list all years and releases available for download with `weo.all_releases()`.
Combine to create local dataset of WEO vintages from 2007 to present:```python
import pathlib
import weo# create folder
pathlib.Path("weo_data").mkdir(parents=False, exist_ok=True)# download all releases
for (year, release) in weo.all_releases():
weo.download(year, release, directory="weo_data")
```## Step 2. Inspect data
Use `WEO` class to view and extract data. `WEO` is a wrapper around a pandas dataframe that ensures proper data import and easier access and slicing of data across time-country-variable dimensions.
Try code below:
```python
from weo import WEOw = WEO("weo.csv")
```What variables and measurements are inside?
```python
# variable listing
w.variables()# units
w.units()
w.units("Gross domestic product, current prices")# variable codes
w.codes
w.from_code("LUR")# countries
w.countries("United") # Dataframe with United Arab Emirates, United Kingdom
# and United States
w.iso_code3("Netherlands") # 'NLD'
```The dataset is year-country-variable-value cube, you can fix any dimension to get a table.
```python
w.get("General government gross debt", "Percent of GDP")
w.getc("NGDP_RPCH")
w.country("DEU")
w.fix_year(1994)
```Plot a chart with the projected 12 largest economies in 2024 (current prices):
```python
(w.gdp_usd(2024)
.dropna()
.sort_values()
.tail(12)
.plot
.barh(title="GDP by country, USD billion (2024)")
)
```Get GDP per capita data from 2000 to 2020:
```python
w.gdp_pc_usd(start_year=2000, end_year=2020)
```## Code documentation
`weo` package documentation is [here](https://epogrebnyak.github.io/weo-reader/).
## Alternative data sources
1\. If you need the latest data as time series and not the vintages of WEO releases, and you know variables that you are looking for, DBnomics is a good choice:
-
-Example:
```python
from dbnomics import fetch_series_by_api_link
ts1 = fetch_series_by_api_link("https://api.db.nomics.world/v22/"
"series/IMF/WEO:latest/DEU.PCPI"
"?observations=1")
```[](https://db.nomics.world/IMF/WEO:2021-10/DEU.PCPI.idx)
More on DBnomics:
- [DBnomics Web API](https://db.nomics.world/docs/web-api/)
- [Introduction to DBnomics in Python](https://notes.quantecon.org/submission/5bd32515f966080015bafbcd)2\. Similar dataset, not updated since 2018, but with earlier years than `weo-reader`:
https://github.com/datasets/imf-weo## Development notes
- You can download the WEO file in command line with `curl` command:
```
curl -o weo.csv https://www.imf.org/-/media/Files/Publications/WEO/WEO-Database/2020/02/WEOOct2020all.xls
```- `WEOOct2020all.xls` from the web site is really a CSV file, not an Excel file.
- There is an update of GDP figures in [June 2020](jun2020), but the file structure is incompatible with regular releases.
- Prior to 2020 the URL structure was similar to `https://www.imf.org/external/pubs/ft/weo/2019/02/weodata/WEOOct2019all.xls`[jun2020]: https://www.imf.org/en/Publications/WEO/Issues/2020/06/24/WEOUpdateJune2020