Bitxchange Python API Library

Python 3.6 License: MIT

This is the offical lightweight python library to connect to the Bitxchange public API. * Source Code: Bitxchange API Library

Quick Start

Installation

  • Install via package name

    pip install bitxchange-py-api
    
  • Alternatively, install with git repository path

    python -m pip install git+https://github.com/Wozinga/bitxchange_python_api.git
    

Usage Example

RESTful APIs

from bitxchange.spot import Spot

exchange = Spot()

print('All trading pairs')
print(exchange.available_trading_pairs(), '\n')

print('All market tickers')
print(exchange.all_market_ticker(), '\n')

Indices and tables