Need to use cx_oracle module with python 3.x version to connect Oracle 19c with TLS. There are firewalls and proxies.
How to implement it? Do I have to use Oracle Wallets? Is TLS 1.2 good enough or I need TLS 1.3 in 2022?
import cx_Oracle
conn = cx_Oracle.connect("uname/pwd@//localhost:1521/sd")
cur = conn.cursor()
cur.execute("SELECT 'Hello' FROM dual")
res = cur.fetchall()