certbot.plugins.storage module

Plugin storage class.

class certbot.plugins.storage.PluginStorage(config, classkey)[source]

Bases: object

Class implementing storage functionality for plugins

save()[source]

Saves PluginStorage content to disk

Raises

errors.PluginStorageError – when unable to serialize the data or write it to the filesystem

put(key, value)[source]

Put configuration value to PluginStorage

Parameters
  • key (str) – Key to store the value to

  • value – Data to store

fetch(key)[source]

Get configuration value from PluginStorage

Parameters

key (str) – Key to get value from the storage

Raises

KeyError – If the key doesn’t exist in the storage