Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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()