aws-sdk-signers
Standalone HTTP Request Signers for Amazon Web Services
What it is and what it does
AWS SDK Signers for Python is a standalone library that handles SigV4 request signing—the AWS authentication mechanism for HTTP requests. Rather than embedding signing logic in a full SDK, it provides two high-level signers (SigV4Signer for synchronous code and AsyncSigV4Signer for async) that work with any HTTP library: Requests, urllib3, AIOHTTP, Curl, or Postman. You supply a request object, AWS credentials, and signing properties (service name, region, optional date and flags for payload signing and URI encoding), and the signer applies the cryptographic signature and required headers.
The package is currently in Pre-Alpha, meaning the API and behavior may change between minor versions as the maintainers collect feedback. It has no external runtime dependencies, making it lightweight to add to existing projects. It requires Python 3.12 or later and is actively maintained, with the last commit on 2026-08-13.
Use it for:
- Sign requests to AWS services when using a non-SDK HTTP client or custom request pipeline.
- Integrate AWS authentication into tools like Postman or Curl without pulling in a full SDK.
- Build async applications that need to sign requests to AWS without blocking I/O.
- Create custom AWS API clients that need fine-grained control over request signing and headers.
- Test or debug AWS API calls by manually constructing and signing requests.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides standalone SigV4 request signing for AWS HTTP requests, compatible with libraries like Requests, urllib3, AIOHTTP, and Curl.
Yes, if you need standalone SigV4 signing and can tolerate Pre-Alpha stability. The low install friction, active maintenance, permissive license, and zero runtime dependencies make it a practical choice for projects that want signing without a full SDK dependency. Pin to a minor version and review changelogs before upgrading.
Install
aws-sdk-signers on PyPI
pip
pip install aws-sdk-signersuv
uv add aws-sdk-signerspoetry
poetry add aws-sdk-signersInstalling aws-sdk-signers
Before you install
Low install friction with no runtime dependencies. Active maintenance as of 2026-08-13, but in Pre-Alpha development phase with acknowledged potential for breaking changes between minor versions—pinning to a specific minor version is recommended.
License in practice
Licensed under Apache License 2.0 (permissive), allowing commercial and private use with minimal restrictions.
Quickstart
pip install aws-sdk-signers
from aws_sdk_signers import SigV4Signer, SigV4SigningProperties, AWSCredentialIdentity, AWSRequest
signer = SigV4Signer()
props = SigV4SigningProperties(service='s3', region='us-west-2')
creds = AWSCredentialIdentity(access_key='...', secret_key='...')
request = AWSRequest(method='GET', url='https://...')
signed_request = signer.sign(request, props, creds)
Requires Python 3.12 or later.
Verify before relying
- Whether AsyncSigV4Signer is production-ready or also carries Pre-Alpha stability caveats.
- Whether payload_signing_enabled and content_checksum_enabled defaults (True) are appropriate for all use cases.
- Scope and frequency of breaking changes expected during Pre-Alpha phase.
Package facts
| License | Apache License 2.0 (permissive) |
| Python support | supports the current Python release (>=3.12) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 101 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 399,957/month — #6,943 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: aws_sdk_signers-0.3.0-py3-none-any.whl
Keywords: amazon, aws, http, sdk, signing, sigv4
Tags
More Libraries packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
python-dateutilProvides parsing, arithmetic, and recurrence…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
pytestpytest is a testing framework that lets you…
permissive · top 100 on PyPI
requests-sigv4Adds AWS Signature Version 4 signing to…
permissive · top 5,000 on PyPI
cassandra-sigv4Adds AWS Signature Version 4 authentication to…
permissive · top 15,000 on PyPI
aws-request-signerSigns HTTP requests using AWS Signature V4,…
permissive · top 15,000 on PyPI
mcp-proxy-for-awsBridges MCP clients to AWS-hosted MCP servers…
permissive · top 5,000 on PyPI
sagemaker-mlflowIntegrates MLflow with Amazon SageMaker by…
permissive · top 5,000 on PyPI
aws-requests-authAdds AWS Signature Version 4 authentication to…
permissive · top 1,000 on PyPI
requests-auth-aws-sigv4Adds AWS Signature Version 4 authentication to…
permissive · top 5,000 on PyPI
veracode-api-signingSigns HTTP requests destined for the Veracode…
permissive · top 15,000 on PyPI
py-builder-signing-sdkGenerates cryptographically signed HTTP headers…
permissive · top 15,000 on PyPI