EnvKeeper
Like localStorage
, but for python
!
Simple Python library for managing and storing variables as JSON-encoded dictionaries in environment variables. It provides a dictionary-like interface for storing and retrieving data in environment variables, and allows for global access once stored.
Installation
Install EnvKeeper via pip:
pip install envkeeper
Usage
See the Makefile
for a list of examples and available commands.
Here's a basic example of using BlobStorage:
from envkeeper import StorageContainer
store = StorageContainer('MY_VAR')
store['foo'] = 'bar'
store['baz'] = 42
print(store['foo'])
print(store['baz'])
del store['foo']
print('baz' in store)
Contributing
Contributions are welcome! Please feel free to submit a pull request.
License
This project is licensed under the terms of the MIT license.