Welcome to the python-currencycom
This is an unofficial Python wrapper for the Currency.com exchange REST API v1. I am in no way affiliated with Currency.com, use at your own risk.
Documentation
Please find official documentation by: https://exchange.currency.com/api
Or Swagger by the link: https://apitradedoc.currency.com/swagger-ui.html#/.
QuickStart
Register an account on Currency.com
Create an API Key with correct permissions
pip install python-currencycom
Let's retrieve tradable symbols on the market
from pprint import pprint
from currencycom.client import Client
client = Client('API_KEY', 'SECRET_KEY')
# Exchange info contains various info including tradable symbols
exchange_info = client.get_exchange_info()
tradable_symbols = [x['symbol'] for x in exchange_info['symbols']]
pprint(tradable_symbols,
indent=2)
For more check out the documentation and Swagger.
Release files for python-currencycom 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| python_currencycom-0.2.0-py2-none-any.whl | Python 2 | none | any | Details |
Release files / python_currencycom-0.2.0-py2-none-any.whl
| Download URL | python_currencycom-0.2.0-py2-none-any.whl |
|---|---|
| Size | 9.3 kB |
| Tags | Python 2 |
|
SHA-256 checksum How to use checksums |
0a647b8f095f68a981b7bba7daabef5e173b6c04500fd21f4596439c335535b2
|
|
BLAKE2b-256 checksum How to use checksums |
1b6aca79085f5df31f0c33a74eb912b672473cf2e1262da821778f0ddbfdf6c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.3.0 pkginfo/1.6.1 requests/2.23.0 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.5
|