We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
S3Fs is a Pythonic file interface to S3. It builds on top of botocore. The most common way to interact with s3 on Pandas.
API
import pandas as pd key = "files/books.csv" books_df = pd.read_csv( f"s3://{AWS_S3_BUCKET}/{key}", storage_options={ "key": AWS_ACCESS_KEY_ID, "secret": AWS_SECRET_ACCESS_KEY, "token": AWS_SESSION_TOKEN, }, )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
S3FS
S3Fs is a Pythonic file interface to S3. It builds on top of botocore.
The most common way to interact with s3 on Pandas.
API
Usage
The text was updated successfully, but these errors were encountered: