Update README.md
Browse files
README.md
CHANGED
@@ -26,3 +26,32 @@ dataset_info:
|
|
26 |
download_size: 2261669
|
27 |
dataset_size: 8593623
|
28 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
download_size: 2261669
|
27 |
dataset_size: 8593623
|
28 |
---
|
29 |
+
|
30 |
+
### Description
|
31 |
+
Bank of Ghana historical and real-time exchange rates data. [Bank of Ghana](https://pypi.org/project/bank-of-ghana-fx-rates/)
|
32 |
+
|
33 |
+
Click Here: [![Google Colab Notebook](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1jZo8TUictFbZBCglXWxZPtbVDYtp_eUn?usp=sharing)
|
34 |
+
|
35 |
+
### Data Format
|
36 |
+
```shell
|
37 |
+
{
|
38 |
+
"date": "...",
|
39 |
+
"currency": "...",
|
40 |
+
"currency_pair": "...",
|
41 |
+
"buying": "...",
|
42 |
+
"selling": "...",
|
43 |
+
"mid_rate": "..."
|
44 |
+
}
|
45 |
+
```
|
46 |
+
|
47 |
+
### Load Dataset
|
48 |
+
```shell
|
49 |
+
pip install datasets
|
50 |
+
```
|
51 |
+
|
52 |
+
```shell
|
53 |
+
from datasets import load_dataset
|
54 |
+
|
55 |
+
rates = load_dataset("worldboss/bank-of-ghana-rates", split="train")
|
56 |
+
|
57 |
+
```
|