User utilities (glass.user)#
The glass.user module contains convenience functions for users of the
library.
Input and output#
- glass.user.save_cls(filename, cls)#
Save a list of Cls to file.
Uses
numpy.savez()internally. The filename should therefore have a.npzsuffix, or it will be given one.
- glass.user.load_cls(filename)#
Load a list of Cls from file.
Uses
numpy.load()internally.