I\'ve recently changed my project to use SQLAlchemy and my project runs fine, it used an external MySQL server.
Now I\'m trying to work with a different MySQL server wit
I changed the DBAPI to MySQL-Connector, and used the following code:
ssl_args = {'ssl_ca': ca_path} engine = create_engine("mysql+mysqlconnector://:@/", connect_args=ssl_args)
And now it works.