Jar make it easy to store the state of your AWS Lambda functions.
Project description
# AWS Jar
[![PyPI version](https://badge.fury.io/py/awsjar.svg)](https://badge.fury.io/py/awsjar)
[![Python 3.6](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/release/python-360/)
<a href="https://github.com/ambv/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
<p align="center">
<img src="https://raw.githubusercontent.com/ysawa0/awsjar/master/docs/logo.png" alt="Jar Logo" width="45%" height="45%"/>
</p>
[Jar](https://github.com/ysawa0/awsjar) 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
[User Guide](https://github.com/ysawa0/awsjar/blob/master/docs/guide.md)
## Contributing
Please see the [contributing guide](CONTRIBUTING.md) for more specifics.
## Contact
Please use the [Issues](https://github.com/ysawa0/awsjar/issues) page
## License
Distributed under the Apache License 2.0. See [`LICENSE`](LICENSE) for more information.
[![PyPI version](https://badge.fury.io/py/awsjar.svg)](https://badge.fury.io/py/awsjar)
[![Python 3.6](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/release/python-360/)
<a href="https://github.com/ambv/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
<p align="center">
<img src="https://raw.githubusercontent.com/ysawa0/awsjar/master/docs/logo.png" alt="Jar Logo" width="45%" height="45%"/>
</p>
[Jar](https://github.com/ysawa0/awsjar) 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
[User Guide](https://github.com/ysawa0/awsjar/blob/master/docs/guide.md)
## Contributing
Please see the [contributing guide](CONTRIBUTING.md) for more specifics.
## Contact
Please use the [Issues](https://github.com/ysawa0/awsjar/issues) page
## License
Distributed under the Apache License 2.0. See [`LICENSE`](LICENSE) for more information.
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.0.19.tar.gz
(21.2 kB
view details)
File details
Details for the file awsjar-0.0.19.tar.gz
.
File metadata
- Download URL: awsjar-0.0.19.tar.gz
- Upload date:
- Size: 21.2 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 | 94dc8c874a6f9e161ba2b16050e2af82e7d4dc542b478583aec733187527aedc |
|
MD5 | f2cd4189894ba933c71b2e825eb61e8b |
|
BLAKE2b-256 | fab38a3cf53d8611d5d74c0b31a652150cc8a19b0442468bb98d99fe2ff571ac |