Skip to main content

AWS S3 文件

Amazon Simple Storage Service (Amazon S3) 是一种对象存储服务。

AWS S3 存储桶

这里介绍了如何从 AWS S3 文件 对象中加载文档对象。

from langchain_community.document_loaders import S3FileLoader
%pip install --upgrade --quiet  boto3
loader = S3FileLoader("testing-hwc", "fake.docx")
loader.load()
[Document(page_content='Lorem ipsum dolor sit amet.', lookup_str='', metadata={'source': 's3://testing-hwc/fake.docx'}, lookup_index=0)]

配置 AWS Boto3 客户端

您可以通过在创建 S3DirectoryLoader 时传递命名参数来配置 AWS Boto3 客户端。例如,当无法将 AWS 凭据设置为环境变量时,这将非常有用。请参阅可以配置的参数列表

loader = S3FileLoader(
"testing-hwc", "fake.docx", aws_access_key_id="xxxx", aws_secret_access_key="yyyy"
)
loader.load()

Was this page helpful?


You can leave detailed feedback on GitHub.