Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrguardo/coinmate.io-api
Coinmate.io API wrapper
https://github.com/rrguardo/coinmate.io-api
bitcoin python
Last synced: about 1 month ago
JSON representation
Coinmate.io API wrapper
- Host: GitHub
- URL: https://github.com/rrguardo/coinmate.io-api
- Owner: rrguardo
- License: gpl-3.0
- Created: 2017-02-20T03:54:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-13T15:06:42.000Z (almost 5 years ago)
- Last Synced: 2024-09-06T16:48:16.826Z (2 months ago)
- Topics: bitcoin, python
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Coinmate.io API wrapper
-----------------------Basic CoinMate.io API wrapper, that support get the balance, withdrawal
and more ::from coinmate_api import coinmate
cm_api = coinmate('privateApiKey', 'publicApiKey', 'client_id')
print cm_api.get_eur_available()
result = cm_api.withdraw_bitcoins(0.01,'1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa')
if not result['error']:
print "Transaction ID:"
print result['data']
ticker_info = cm_api.get_ticker()