“Pandas leia o objeto S3 no notebook Jupyter” Respostas de código

Pandas leia o objeto S3 no notebook Jupyter

import s3fs

# csv file
df = pd.read_csv('s3://{bucket_name}/{path_to_file}')

# parquet file
df = pd.read_parquet('s3://{bucket_name}/{path_to_file}')
Vinoo Palayoor

Pandas leia o objeto S3 no notebook Jupyter

import boto3
s3_resource = boto3.resource('s3')
bucket = s3_resource.Bucket(name='{bucket_name}')
for file in bucket.objects.all():
    # do what you want with the files
    # for example:
    if 'filter' in file.key:
        print(file.key)
        new_df = pd.read_csv('s3:://{bucket_name}/{}'.format(file.key))
Vinoo Palayoor

Respostas semelhantes a “Pandas leia o objeto S3 no notebook Jupyter”

Perguntas semelhantes a “Pandas leia o objeto S3 no notebook Jupyter”

Mais respostas relacionadas para “Pandas leia o objeto S3 no notebook Jupyter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código