In order to start pdf explorer you need:
- Python 3.6+
pip install cryptocomapi
from cryptocomapi import CryptoComApi
api = CryptoComApi()
print(api.get_symbols())
from cryptocomapi import CryptoComApi
api = CryptoComApi(api_key="KEY_SECRET", secret_key="TOKEN_SECRET")
print(api.get_all_orders('bchbtc'))
Sometimes the timezone of the CryptoCom Exchange does not fit your timezone, so a quick hack is to set the offset
from cryptocomapi import CryptoComApi
api = CryptoComApi(time_offset = 8*60*60, api_key = "KEY_SECRET", secret_key = "TOKEN_SECRET")
print(api.get_open_orders('bchbtc'))
Want to contribute? Great!
Todos:
- Write Tests
- Implement Auth Section
- Implement User Related Calls
MIT
Free Software, Hell Yeah!