loadIndexDataFromString(data) -> dict
Index data format stores an unordered mapping of (key, value) pairs where keys
are str
objects and the values are str
objects or binary
strings. Binary strings are str
objects in Python 2 and bytes
objects in Python 3 (see HOM binary data for more information). Is used to store otl files and asset definition
sections, preset files, icon archives, and other files in Houdini. The other
common file format used in Houdini is CPIO.
If the data is not in index data format, this function returns an empty dictionary.
The inverse of this function is hou.saveIndexDataToString().
See also |