If you experience a timeout durring the process, there are 3 variables at the top of ApiClient.py that can be adjusted. The script can be edited in any text editing software, eg. notepad or notepad++.

#Shared timeout and retry parameters to tune if network is difficult
TIMEOUT=40
LONGTIMEOUT=1200
RETRIES=Retry(
    total=3, 
    status_forcelist=[429, 500, 502, 503, 504], 
    method_whitelist=["HEAD", "GET", "POST"]
)