htmd.session module# htmd.session.htmdload(fname)# Load a previously saved workspace from a file. Parameters: fname (str) – The location of the file containing the saved workspace. Return type: None htmd.session.htmdsave(fname, varnames=None)# Save the workspace to a file. Parameters: fname (str) – The file in which to save the workspace. varnames (list | None) – A list of variable names to save. If None, all non-private, non-module, non-function variables are saved. Return type: None