forked from fzhulitov/ecb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from mbk-dev/master
Sink
- Loading branch information
Showing
8 changed files
with
106 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
# ecb | ||
[![Python](https://img.shields.io/badge/python-v3-brightgreen.svg)](https://www.python.org/) | ||
[![License](https://img.shields.io/badge/license-MIT-blue)](https://opensource.org/licenses/MIT) | ||
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) | ||
|
||
# ecb: Python interface to European Central Bank (ECB) API | ||
Several functions to det financial data from European Central Bank (ECB) database. | ||
|
||
## Available functions | ||
|
||
- `get_gdp_q()` Euro area GDP at market price quarterly timeseries (from 1995) | ||
**ECB key rates (from 1999)**: | ||
- `get_refinancing_rate()` ECB Main refinancing operations key rate time series | ||
- `get_deposit_rate()` ECB key rate on the deposit facility | ||
- `get_marginal_rate()` ECB key rate on marginal lending facility |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
from importlib.metadata import version | ||
from ecb.kr import (get_main_rate, | ||
get_deposit_rate, | ||
get_marginal_rate, | ||
) | ||
from ecb.kr import ( | ||
get_refinancing_rate, | ||
get_deposit_rate, | ||
get_marginal_rate, | ||
) | ||
from ecb.gdp import get_gdp_q | ||
from ecb.hicp import get_hicp | ||
from ecb.request_data import get_data_frame | ||
|
||
# __version__ = version("ecb") | ||
__version__ = version("ecb") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters