-
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.
- Loading branch information
1 parent
b7da103
commit 297afbf
Showing
1 changed file
with
23 additions
and
1 deletion.
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,3 +1,25 @@ | ||
# Geld | ||
|
||
A library to easily handle currency conversions | ||
A library to easily handle currency conversions. | ||
|
||
|
||
## Official documentation | ||
- We do not have an official documentation yet, we are working on this. | ||
|
||
## Data origin | ||
Currently the API uses the https://theforexapi.com/api to get the values. | ||
We are working to make it extensable so you can pick info from different sources in the future. | ||
|
||
|
||
## How to install | ||
|
||
``` | ||
pip install geld | ||
``` | ||
|
||
## How to use the Sync Client | ||
|
||
``` | ||
from geld.clients import sync_client as client | ||
result = client.convert_currency("USD", "BRL", 25, "2021-12-05") | ||
``` |