s3 버킷에서 bto3로 파일 내용 읽기 나는 S3 버킷에 있는 파일 이름을 읽으며 읽었습니다. objs = boto3.client.list_objects(Bucket='my_bucket') while 'Contents' in objs.keys(): objs_contents = objs['Contents'] for i in range(len(objs_contents)): filename = objs_contents[i]['Key'] 이제, 나는 파일의 실제 내용을 얻어야 합니다, a와 유사합니다.open(filename).readlines(). 가장 좋은 방법은 무엇입니까?boto3는 객체를 통해 반복하는 것과 같은 작업을 쉽게 만드는 리소스 모델을 제공합니다.안타깝게도 StreamingBody에서 제공..