Freecurrencyapi Python Client
Project description
freecurrencyapi Python Client
Freecurrencyapi Python Client is the official Python Wrapper around the freecurrencyapi API.
Installation
Install from pip:
pip install freecurrencyapi
Install from code:
pip install git+https://github.com/everapihq/freecurrencyapi-python.git
Usage
All freecurrencyapi API requests are made using the Client
class. This class must be initialized with your API access key string. Where is my API access key?
In your Python application, import freecurrencyapi
and pass authentication information to initialize it:
import freecurrencyapi
client = freecurrencyapi.Client('API_KEY')
Retrieve Status
print(client.status())
Retrieve Currencies
https://freecurrencyapi.com/docs/currencies
result = client.currencies(currencies=['EUR', 'CAD'])
print(result)
Retrieve Latest Exchange Rates
https://freecurrencyapi.com/docs/latest
result = client.latest()
print(result)
Retrieve Historical Exchange Rates
https://freecurrencyapi.com/docs/historical
result = client.historical('2022-02-02')
print(result)
Contact us
Any feedback? Please feel free to contact our team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file freecurrencyapi-0.1.0.tar.gz
.
File metadata
- Download URL: freecurrencyapi-0.1.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd28291cf6ea51cf2c3a84d71af46b64fb6a8fbee26d19a34177a67e8f6ccbe4 |
|
MD5 | fbe5cbaed8274101a0011207ad2391b9 |
|
BLAKE2b-256 | 8bf6a1a9fd0f728c603c7813f96b245fb699e83f0183b4bbcb61955c5be3c354 |