Certbot client interfaces.
-
class
certbot.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, client)[source]
Save account.
| Raises: | .AccountStorageError – if account could not be saved |