py-crypto is an open-source, cryptocurrency trading library for Python. This library is ideal for developers who wish to interact with API endpoints of multiple cryptocurrency exchanges at once without wanting to write code specific to each. Simply specify which exchange you would like to interact with by name, along with your API credentials, as shown in the "Example" section below. Currently, the library offers API support for the following exchanges: Binance and Bittrex.
The source code is currently hosted on GitHub at https://github.com/gokulk04/py-crypto
The latest released version is also available for download via pip:
pip install py-crypto
import pycrypto.client as pyc
BINANCE_API_KEY = "MY_BINANCE_API_KEY"
BINANCE_API_SECRET = "MY_BINANCE_API_SECRET"
binance = pyc.Client(pyc.Exchange.BINANCE, BINANCE_API_KEY, BINANCE_API_SECRET)
binance.get_all_balances()
For further details on py-crypto's usage, please refer to its documentation.
This project is licensed under the terms of the MIT license and can be viewed here.