mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
26 lines
721 B
Plaintext
26 lines
721 B
Plaintext
# AWS S3 Directory
|
|
|
|
>[Amazon Simple Storage Service (Amazon S3)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-folders.html) is an object storage service.
|
|
|
|
>[AWS S3 Directory](https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-folders.html)
|
|
|
|
>[AWS S3 Buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingBucket.html)
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install boto3
|
|
```
|
|
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example for S3DirectoryLoader](/docs/integrations/document_loaders/aws_s3_directory.html).
|
|
|
|
See a [usage example for S3FileLoader](/docs/integrations/document_loaders/aws_s3_file.html).
|
|
|
|
```python
|
|
from langchain.document_loaders import S3DirectoryLoader, S3FileLoader
|
|
```
|