ssm-parameter-store
Simple Python wrapper for getting values from AWS Systems Manager Parameter Store
What it is and what it does
This package wraps boto3 to simplify fetching parameters from AWS Systems Manager Parameter Store. Instead of writing boto3 client code directly, you instantiate EC2ParameterStore and call methods like get_parameter(), get_parameters(), or get_parameters_by_path() to retrieve values as dictionaries. It handles credential lookup via boto3's standard mechanisms and supports optional decryption of SecureString parameters.
The package is designed for applications that store configuration and secrets in AWS Parameter Store and need a lightweight Python interface. It can populate environment variables for integration with libraries like django-environ, making it useful for Django deployments or any app that reads config from os.environ. However, the package has been abandoned since late 2019 with no updates since, so it carries maintenance risk if boto3 or AWS APIs change significantly.
Use it for:
- Fetch Django configuration secrets from AWS Parameter Store and populate environment variables for django-environ.
- Retrieve database credentials and connection strings organized by path hierarchy (e.g., /prod/db/) for application startup.
- Load all parameters under a path prefix (e.g., /dev/) to populate a config dictionary at runtime.
- Decrypt SecureString parameters from Parameter Store in a Python application running on EC2 or Lambda.
- Centralize environment-specific configuration (dev, staging, prod) in Parameter Store and fetch it by path.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Wrapper for AWS Systems Manager Parameter Store that retrieves configuration values and secrets as Python dictionaries, supporting single parameters, multiple parameters, or path-based queries.
Yes, if you need a lightweight wrapper for Parameter Store and can tolerate abandoned status. The package has low install friction and no known vulnerabilities, but expect no maintenance or updates. If you require active support or are starting a new project, consider using boto3 directly or evaluating actively maintained alternatives. For existing codebases already using it, the risk is low as long as boto3 remains compatible.
Install
ssm-parameter-store on PyPI
pip
pip install ssm-parameter-storeuv
uv add ssm-parameter-storepoetry
poetry add ssm-parameter-storeInstalling ssm-parameter-store
Before you install
Low install friction with a single runtime dependency (boto3). Package is abandoned as of 2019-11-06 with no commits since 2023-05-04, so expect no maintenance or security updates.
License in practice
MIT license is permissive; you can use this package freely in commercial and private projects with minimal restrictions.
Quickstart
pip install ssm-parameter-store
from ssm_parameter_store import EC2ParameterStore
store = EC2ParameterStore(region_name='us-west-2')
parameter = store.get_parameter('param1', decrypt=True)
AWS credentials must be configured (via environment variables, IAM role, or explicit parameters); boto3 will use standard AWS credential lookup.
Verify before relying
- Whether the package works reliably with modern Python versions beyond 3.7, given classifiers list only up to 3.7.
- Current compatibility with recent boto3 versions and whether any breaking changes in boto3 affect this wrapper.
- Whether the abandoned status and lack of maintenance pose practical risks for production use cases.
Package facts
| License | MIT (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — boto3 |
| Maintenance | abandoned — 2,473 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 145,106/month — #11,135 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: ssm_parameter_store-19.11.0-py2.py3-none-any.whl
Tags
More Utilities packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
charset-normalizerDetects and normalizes text encoding from…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
PygmentsPygments is a syntax highlighter that colorizes…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
aws-cdk.aws-ssmProvides CDK constructs for defining AWS…
permissive · top 15,000 on PyPI
credstashCredStash stores and retrieves secrets using…
permissive · top 15,000 on PyPI
onepasswordWrapper around the 1Password CLI that lets you…
permissive · top 15,000 on PyPI
python-decoupleReads configuration parameters from environment…
permissive · top 5,000 on PyPI
aws-secretsmanager-cachingCaches AWS Secrets Manager secrets in-process…
permissive · top 5,000 on PyPI
mypy-boto3-ssmProvides type stubs and annotations for boto3's…
permissive · top 5,000 on PyPI
ibm-secrets-manager-sdkA Python client library for programmatically…
permissive · top 15,000 on PyPI
aws-cdk.aws-secretsmanagerAWS CDK construct library for provisioning and…
permissive · top 15,000 on PyPI
django-environLoads and parses environment variables from…
permissive · top 5,000 on PyPI
azure-keyvault-secretsSecurely store, retrieve, and manage secrets…
permissive · top 1,000 on PyPI