awscli-local

0.22.2 · active · verified Fri Apr 10

awscli-local is a thin Python wrapper around the standard 'aws' command-line interface (CLI) that enables seamless interaction with LocalStack, a cloud service emulator. It allows developers to execute AWS CLI commands against their local LocalStack instance without needing to explicitly specify the `--endpoint-url` parameter. The current version is 0.22.2, and it is actively maintained by the LocalStack team, receiving regular updates.

Warnings

Install

Quickstart

This quickstart demonstrates creating and listing an S3 bucket using the `awslocal` command, assuming LocalStack is already running on your machine. This eliminates the need for `--endpoint-url` on most commands.

# First, ensure LocalStack is running (e.g., via `localstack start` or Docker).
# Then, use awslocal as you would aws, but interacting with your local services.
awslocal s3 mb s3://my-local-bucket
awslocal s3 ls

view raw JSON →