I would like to connect to a MySQL database that requires ca-cert. I can do it with MySQLdb like below:
MySQLdb.connect(host = self.host, po
create_engine() in SQLAlchemy has a connect_args parameter:
connect_args
connect_args – a dictionary of options which will be passed directly to the DBAPI’s connect() method as additional keyword arguments.
connect()