Metadata-Version: 2.1
Name: kktools
Version: 1.8
Summary: Tools for finance and treasury specialists
Home-page: https://github.com/khorevkp/KK_Tools
Author: Konstantin Khorev
Author-email: khorevkp@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# kktools


========

This library provides python tools for finance and treasury specialists.

## Installation

`pip install kktools`

## Basic Usage

Importing history of EUR/GBP exchange rates since 2000-01-01 and exporting it to an excel file with pretty formatting

```
import kktools as kkt

df = kkt.get_ecb_rates("GBP", "2000-01-01")
kkt.df_to_excel("Historical_Rates.xlsx", df)
```

### License
MIT licensed. Check the [`LICENSE`](https://github.com/khorevkp/KK_Tools/blob/master/LICENSE) file for full details.


