Skip to content

Instantly share code, notes, and snippets.

@kreezxil
Created August 20, 2023 13:15
Show Gist options
  • Save kreezxil/6d423febf9bbdf857b6fddae3ab7424e to your computer and use it in GitHub Desktop.
Save kreezxil/6d423febf9bbdf857b6fddae3ab7424e to your computer and use it in GitHub Desktop.
# Copyright (C) 2011 Chris Dekter
# Copyright (C) 2019-2020 Thomas Hess <thomas.hess@udo.edu>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
class Store(dict):
"""
Allows persistent storage of values between invocations of the script.
"""
GLOBALS = {}
def set_value(self, key, value):
"""
Store a value
Usage: C{store.set_value(key, value)}
"""
self[key] = value
def get_value(self, key):
"""
Get a value
Usage: C{store.get_value(key)}
"""
return self.get(key, None)
def remove_value(self, key):
"""
Remove a value
Usage: C{store.remove_value(key)}
"""
del self[key]
def set_global_value(self, key, value):
"""
Store a global value
Usage: C{store.set_global_value(key, value)}
The value stored with this method will be available to all scripts.
"""
Store.GLOBALS[key] = value
def get_global_value(self, key):
"""
Get a global value
Usage: C{store.get_global_value(key)}
"""
return self.GLOBALS.get(key, None)
def remove_global_value(self, key):
"""
Remove a global value
Usage: C{store.remove_global_value(key)}
"""
del self.GLOBALS[key]
def has_key(self, key):
"""
python 2 compatibility
"""
return key in self
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment