Metadata-Version: 1.1
Name: coinmate-api
Version: 1.1.5
Summary: CoinMate.io BitCoin processor API.
Home-page: https://bitbucket.org/4simple/coinmate.io-api
Author: http://www.4simple.org
Author-email: support@4simple.org
License: UNKNOWN
Description: 
        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(2,'1HB1by2ZkbFAwEAqC5zwoHcU1DroBysrPG')
            if not result['error']:
                print "Transaction ID:"
                print result['data']
            ticker_info = cm_api.get_ticker()
        
        
        Documentation_
        --------------
        Lib extra documentation_
        
        .. _Documentation: http://coinmate_doc.4simple.org/
        
        
        
Keywords: bitcoin,coinmate.io,bitcoin api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
