Home >Backend Development >Python Tutorial >Setting Up an Sucket in LocalStack
Working with Amazon S3 is common for cloud storage solutions, but for local testing, interacting with AWS can be inefficient and costly. LocalStack is a fully functional local AWS cloud stack that emulates AWS services. In this guide, we’ll walk through how to set up an S3 bucket in LocalStack on macOS, discuss the benefits of using this setup, and provide a full code example.
Using LocalStack to simulate S3 provides key benefits:
Ensure the following are installed on your respective OS:
brew install localstack
localstack start
Note: If you face permissions issues, prepend sudo to the command.
brew install awscli
Note: The above command is for macOS. Find a complete documentation on how to install awscli.
aws configure
Use placeholder values:
Output format: json
Set LocalStack Endpoint URL:
export LOCALSTACK_ENDPOINT=http://localhost:4566
aws --endpoint-url=$LOCALSTACK_ENDPOINT s3 mb s3://my-local-bucket
aws --endpoint-url=$LOCALSTACK_ENDPOINT s3 ls
echo "Hello LocalStack!" > testfile.txt
aws --endpoint-url=$LOCALSTACK_ENDPOINT s3 cp testfile.txt s3://my-local-bucket
aws --endpoint-url=$LOCALSTACK_ENDPOINT s3 cp s3://my-local-bucket/testfile.txt downloaded_testfile.txt
pip install boto3
import boto3 from botocore.config import Config # Configuration for LocalStack localstack_config = Config( region_name='us-east-1', retries={'max_attempts': 10, 'mode': 'standard'} ) # Initialize the S3 client with LocalStack endpoint s3_client = boto3.client( 's3', endpoint_url="http://localhost:4566", aws_access_key_id="test", aws_secret_access_key="test", config=localstack_config ) bucket_name = "my-local-bucket" # Create the bucket s3_client.create_bucket(Bucket=bucket_name) print(f"Bucket '{bucket_name}' created.") # Upload a file s3_client.upload_file("testfile.txt", bucket_name, "testfile.txt") print("File uploaded.") # List objects in the bucket objects = s3_client.list_objects_v2(Bucket=bucket_name) for obj in objects.get('Contents', []): print("Found file:", obj['Key']) # Download the file s3_client.download_file(bucket_name, "testfile.txt", "downloaded_testfile.txt") print("File downloaded.")
Run the script:
brew install localstack
localstack start
This article provided a step-by-step walkthrough for setting up an S3 bucket in LocalStack. This setup is ideal for local development, allowing you to test AWS S3 functionality safely without incurring costs or needing an internet connection.
The above is the detailed content of Setting Up an Sucket in LocalStack. For more information, please follow other related articles on the PHP Chinese website!