skip to Main Content

Connect to Athena without access?

I need to connect to Athena using Python. The code used is as follows: import pyathena import pandas as pd athena_conn = pyathena.connect(access_key, secret_key, s3_staging_dir, region_name) df = pd.read_sql("SELECT * FROM db.tableLIMIT 10", athena_conn) df.head(5) I, personally don't have access…

VIEW QUESTION
Back To Top
Search