letsencrypt.interfaces

Let’s Encrypt client interfaces.

class letsencrypt.interfaces.AccountStorage[source]

Bases: object

Accounts storage interface.

find_all()[source]

Find all accounts.

Returns:All found accounts.
Return type:list
load(account_id)[source]

Load an account by its id.

Raises:
  • .AccountNotFound – if account could not be found
  • .AccountStorageError – if account could not be loaded
save(account)[source]

Save account.

Raises .AccountStorageError:
 if account could not be saved