Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions ecb/kr.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import pandas as pd
import ecb
def get_main_rate() -> pd.Series:
df = ecb.request_data.get_data_frame('MRR_FR')
return df
return ecb.request_data.get_data_frame('MRR_FR')
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function get_main_rate refactored with the following changes:


def get_deposit_rate() -> pd.Series:
df = ecb.request_data.get_data_frame('DFR')
return df
return ecb.request_data.get_data_frame('DFR')
Comment on lines -8 to +7
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function get_deposit_rate refactored with the following changes:


def get_marginal_rate() -> pd.Series:
df = ecb.request_data.get_data_frame('MLFR')
return df
return ecb.request_data.get_data_frame('MLFR')
Comment on lines -12 to +10
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function get_marginal_rate refactored with the following changes: