开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Bug and fix in TWS python API 10.34 (unknown module "server_versions")


 

Hello all - I just wanted to share a bug and fix I found in the latest version. Using both the windows and mac/linux version 10.34 API, you will error out if you do:
?
from ibkr.client import *
?
for not being able to find the "server_versions" module. There's a typo in client.py. The fix is to go to line 138 of client .py and change
?
from server_versions import MIN_SERVER_VER_CURRENT_TIME_IN_MILLIS
?
to
?
from ibapi.server_versions import MIN_SERVER_VER_CURRENT_TIME_IN_MILLIS