使用python 控制连接 presto
- pip3 安装
pip3 install presto-python-client
- 连接presto 代码
conn = prestodb.dbapi.connect(host='{host}',port=8889,user='{user}',catalog='hive',schema=schema,http_scheme='http')
cur = conn.cursor()
cur.execute(sql)
rows = cur.fetchall()
不断学习