Introduction#
evdschat is an open-source Python interface designed to simplify requests to the Central Bank of the Republic of Turkey (CBRT) Electronic Data Delivery System (EVDS). It tries to decide which data user wants from the conversation and returns data as Result instance (data:pd.DataFrame, metadata:pd.DataFrame and to_excel: Callable function )
View Source Code#
You can view the source code for this project on GitHub: View Source.
What’s New#
Updated in this version:#
chat function
Key Features#
retrievs data from conversation
Installation#
To install evdschat, simply run the following command:
pip install evdschat -U
Quick Start#
Here’s a quick example to get you started with using evdschat:
Using the chat function from evdschat:
prompt = '''
Can I get reserves data please ? Monthly frequency would be great if you can aggreagate by average.
between 2010 and 2020 by the way. Thanks.
'''
res = chat(prompt, debug=False )
print(res)
print(res.data)
print(res.data)
res.to_excel('OutputFileName.xlsx')