Skip to main content

A class allowing you to interact with the AWS Secrets Manager with python dictionary syntax.

Project description

AWS Secrets Dict

aws_secrets_dict is a Dictionary-based class acting as a wrapper for the AWS Secrets Manager. It allows you to Get, Update, & Delete secrets using the notation/syntax of a python dictionary.

Example Usage

from aws_secrets_dict import AwsSecrets

# Need AWS Key & Secret
my_key = "Your AWS Secrets Access Key, or set 'AWS_SECRETS_KEY' env variable"
my_secret = "Your AWS Secrets Secret Key or set 'AWS_SECRETS_SECRET' env variable"
aws_region = "Your AWS Region or set 'AWS_REGION' env variable. If not set/specified, defaults to us-east-2"

mysecrets = AwsSecrets(my_key, my_secret, aws_region)

mysecrets['One'] = 1
mysecrets[2] = "Two"
mysecrets["2"] = 22222
mysecrets['Greeting'] = "Hello"

mysecrets['One']
# 1
mysecrets[2]
# "Two"
mysecrets["2"]
# 22222
mysecrets['Greeting']
# "Hello"

Notes

The class will use the json module to serialize the keys & values, which allows it to distinguish between types when setting keys & retrieving values. Make sure that your keys/values can all be serialized into json.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aws_secrets_dict-1.1.0.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

aws_secrets_dict-1.1.0-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file aws_secrets_dict-1.1.0.tar.gz.

File metadata

  • Download URL: aws_secrets_dict-1.1.0.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for aws_secrets_dict-1.1.0.tar.gz
Algorithm Hash digest
SHA256 6b47fcd525d474ba2247d92cc0ca48d68286c8e472230c0fc973ddb0e88c379d
MD5 2cf9f54072ead96da6a9a6be2bfbd02c
BLAKE2b-256 18e81bbe880ff9eed51c4722e48dc866a7b40be93433bd856aac9b02f69f5783

See more details on using hashes here.

File details

Details for the file aws_secrets_dict-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_secrets_dict-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 579399acd09cdd0816506084e7680f38ec51c955e0ada017cf719527c621100f
MD5 660eeda6ab926f95eb8652bb3ad8af5c
BLAKE2b-256 dc41ed790687a3ccf4d5d02731af1d3c1ced03987245022cf47da887f7e1675c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page