pyvista.set_pickle_format#
- set_pickle_format(format: Literal['vtk', 'xml', 'legacy']) None[ソース]#
Set the format used to serialize
pyvista.DataObjectwhen pickled.- パラメータ:
- format
str The format for serialization. Acceptable values are:
'vtk'(default)objects are serialized using VTK's officialmarshalling methods.
'xml': objects are serialized as an XML-formatted string.'legacy'objects are serialized to bytes in VTK's binary format.
注釈
The
'vtk'format requires VTK 9.3 or greater.警告
'xml'and'legacy'are not recommended. These formats are not officially supported by VTK and have limitations. For example, these formats cannot be used to picklepyvista.MultiBlock.
- format
- エラー処理:
ValueErrorIf the provided format is not supported.