Jar make it easy to store the state of your AWS Lambda functions.
Project description
Jar makes it easy to save the state of your AWS Lambda functions. The data (either a dict or list) can be saved within the Lambda itself as an environment variable or on S3.
Install
pip install awsjar
Examples
Save state with Jar inside a Lambda environment variable
import awsjar
# Save your data with the Lambda itself, as an Environment Variable.
jar = awsjar.Jar(lambda_name='sams-lambda')
data = {'num_acorns': 50, 'acorn_hideouts': ['tree', 'lake', 'backyard']}
jar.put(data)
state = jar.get()
>> {'num_acorns': 50, 'acorn_hideouts': ['tree', 'lake', 'backyard']}
Save state with Bucket on an S3 bucket
import awsjar
# Save your data to an S3 object - s3://my-bucket/state.json
bkt = awsjar.Bucket(bucket='my-bucket', key='state.json')
data = {'num_acorns': 50, 'acorn_hideouts': ['tree', 'lake', 'backyard']}
bkt.put(data)
state = bkt.get()
>> {'num_acorns': 50, 'acorn_hideouts': ['tree', 'lake', 'backyard']}
Docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
awsjar-0.1.2.tar.gz
(21.3 kB
view details)
File details
Details for the file awsjar-0.1.2.tar.gz
.
File metadata
- Download URL: awsjar-0.1.2.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c2bd25a58a60991fecedb4eab646c4409fb5ab5cfc59c0f8bc51f74c1700916 |
|
MD5 | 0919a24d532235a19049eaf7500cb79d |
|
BLAKE2b-256 | c326c8322fa7273e06ccce71bed6a105702d58be1ca76f6ab8859215e282391a |