ibapi
Copyright (C) 2023 Interactive Brokers LLC. All rights reserved. This code is subject to the terms and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable.
1""" 2Copyright (C) 2023 Interactive Brokers LLC. All rights reserved. This code is subject to the terms 3 and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable. 4""" 5 6""" Package implementing the Python API for the TWS/IB Gateway """ 7 8VERSION = {"major": 10, "minor": 44, "micro": 1} 9 10 11def get_version_string(): 12 # Version string with preserved leading zeros 13 return "10.44.01" 14 15 16__version__ = get_version_string()
VERSION =
{'major': 10, 'minor': 44, 'micro': 1}
def
get_version_string():