![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Use environmental variables to store global data. Like localStorage, but for python!
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.
Install EnvKeeper via pip:
pip install envkeeper
See the Makefile
for a list of examples and available commands.
Here's a basic example of using BlobStorage:
from envkeeper import StorageContainer
# Create an instance with an environment variable key
# Be sure to replace `'MY_VAR'` with the actual name of the environment variable you want to use.
store = StorageContainer('MY_VAR')
# Set items
store['foo'] = 'bar'
store['baz'] = 42
# Get items
print(store['foo']) # Outputs: 'bar'
print(store['baz']) # Outputs: 42
# Delete items
del store['foo']
# Check if a key exists
print('baz' in store) # Outputs: True
Contributions are welcome! Please feel free to submit a pull request.
This project is licensed under the terms of the MIT license.
FAQs
Use environmental variables to store global data. Like localStorage, but for python!
We found that envkeeper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.