def mock_binance(accounting_data_dir, inquirer): binance = Binance(b'', b'', inquirer, accounting_data_dir) this_dir = os.path.dirname(os.path.abspath(__file__)) json_path = Path(this_dir).parent / 'tests' / 'utils' / 'data' / 'binance_exchange_info.json' with json_path.open('r') as f: json_data = json.loads(f.read()) binance._symbols_to_pair = create_binance_symbols_to_pair(json_data) binance.first_connection_made = True return binance
def mock_binance(accounting_data_dir, inquirer): # pylint: disable=unused-argument binance = Binance( api_key=base64.b64encode(make_random_b64bytes(128)), secret=base64.b64encode(make_random_b64bytes(128)), data_dir=accounting_data_dir, msg_aggregator=MessagesAggregator(), ) this_dir = os.path.dirname(os.path.abspath(__file__)) json_path = Path( this_dir ).parent / 'tests' / 'utils' / 'data' / 'binance_exchange_info.json' with json_path.open('r') as f: json_data = json.loads(f.read()) binance._symbols_to_pair = create_binance_symbols_to_pair(json_data) binance.first_connection_made = True return binance