Hey guys, quick question, but isn't this supposed ...
# general
n
Hey guys, quick question, but isn't this supposed to say
Copy code
# Supply actual values for the s3
Not
Copy code
# Supply actual values for the se
in the docs? https://docs.daft.ai/en/stable/connectors/aws/#rely-on-environment
Copy code
from <http://daft.io|daft.io> import IOConfig, S3Config

# Supply actual values for the se
io_config = IOConfig(s3=S3Config(key_id="key_id", session_token="session_token", secret_key="secret_key"))

# Globally set the default IOConfig for any subsequent I/O calls
daft.set_planning_config(default_io_config=io_config)

# Perform some I/O operation
df = daft.read_parquet("<s3://my_bucket/my_path/**/*>")
d
Good catch! It was probably meant to be "the secret key" or "s3".
n
Okay! I'm making a fix for that right now, https://github.com/Eventual-Inc/Daft/pull/5280