Last active
May 9, 2023 23:42
-
-
Save tommydangerous/f86cf4a62bdc308de85bab20f4892094 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from deltalake import DeltaTable | |
dt = DeltaTable( | |
# Change this to your unique URI from a previous step | |
# if you’re using your own AWS credentials. | |
's3://mage-demo-public/battle-history/1337', | |
storage_options={ | |
'AWS_ACCESS_KEY_ID': '...', | |
'AWS_SECRET_ACCESS_KEY': '...', | |
}, | |
) | |
dt.to_pandas() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment