I\'m trying to figure out how to set the connection timeout in create_engine(), so far I\'ve tried:
create_engine()
create_engine(url, timeout=10)
For sqlite backend:
sqlite
create_engine(db_url, connect_args={'connect_timeout': timeout})
will set the connection timeout to timeout.
timeout