-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral_functions.py
27 lines (20 loc) · 1 KB
/
general_functions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
def read_files_from_bucket(s3_client, bucket_name, object_key, index_bucket = 'Body'):
try:
response = s3_client.get_object(Bucket = bucket_name, Key = object_key)
output = response[index_bucket].read().decode('utf-8', errors='replace')
print(f"Archivo CSV leído: {object_key}")
except Exception as e:
print(f"Error al leer el archivo CSV en S3: {e}")
return output
def guardar_archivo_en_s3(s3_client, content, s3_key, s3_bucket_name):
try:
s3_client.put_object(Body=content, Bucket=s3_bucket_name, Key=s3_key)
print(f"Archivo CSV creado y guardado en S3: {s3_key}")
except Exception as e:
print(f"Error al guardar el archivo CSV en S3: {e}")
def eliminar_archivo_en_s3(s3_client, bucket_name, key):
try:
s3_client.delete_object(Bucket=bucket_name, Key=key)
print(f"Archivo eliminado en S3: {key}")
except Exception as e:
print(f"Error al eliminar el archivo en S3: {e}")