Replies: 1 comment 1 reply
-
yes, this is possible, here is an example: from sqlalchemy import create_engine
from trino.sqlalchemy import URL
engine = create_engine(
URL(
host="localhost",
port=8080,
catalog="system"
),
connect_args={
"verify": False
}
) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
In the README there's an example which shows how to disable SSL when using DBAPI. Is this also possible with SQLAlchemy? If yes, can an example be provided how the engine should be defined to disable SSL?
Beta Was this translation helpful? Give feedback.
All reactions