v2.0.0b5
Pre-release
Pre-release
- Adds serialize and deserialize functions to the NXfield, NXgroup, and NXlink classes to allow serialized versions of the file to be sent over network connections. The serialize function converts the NeXus objects to dictionaries, that may be saved to a file (e.g., with
pickle.dump. The deserialize function is a class method that recreates the NeXus object after the dictionary has been reloaded (e.g., withpickle.load). For a complete NeXus file, this would be implemented byNXroot.deserialize(<serialized_root>).