python-bittrex
python-bittrex copied to clipboard
Python bindings for bittrex
Bittrex released on new version of its API ;-) [https://bittrex.zendesk.com/hc/en-us/articles/360027160871-Changelist-04-19-2019](url) [https://bittrex.github.io/api/v3](url) Thanks
For some reason someone asked me on the nodejs package how to do websockets in python, they provided some code to get started and I was able to fix it...
Anyone else having trouble with get_candles? I find that when I try to pull a data from a list of coin names, some of the coin names don't return candle...
There is example code which says `my_bittrex = Bittrex("", "", api_version=" or ")` but when I execute this I get an error and I think it should be written as...
This adds mock tests for methods that are harder to test: buy_limit, sell_limit, cancel, withdraw, get_order for API v1.1 and trade_sell and trade_buy for API v2.0. Tests are using Python...
The decrypt method on the Bittrex class was not actually reading credentials from secrets.json. This commit adds that. Justification: I don't currently understand how the decrypt method is supposed to...
I'm not sure why I seem to be having this issue. But I followed the code and instructions on bittrex and have been receiving this message for the past week:...
There is a pair (USD-LTC) missing from the list in the following reference, causing unit tests to fail. https://github.com/ericsomdahl/python-bittrex/blob/2dbc08e3221e07a9e618eaa025d98ed197d28e31/bittrex/test/bittrex_tests.py#L75
Hi, I had successfully download deposit history with `get_deposit_history()` but withdraw equivalent returns: `{'success': True, 'message': '', 'result': []}` No matter if I specify the coin like `get_withdrawal_history('BTC')` or try...