It has been a long time since the last time we got in touch.

To synchronize data rapidly, we're trying to set up a live stream instead of dumping everything to disk. In other words, we expect to import a stage with some python calls like this:
node = hou.pwd() stage = node.editableStage() stage.GetRootLayer().ImportFromString( """#usda 1.0 def \"sandbox\" { def Mesh \"box\" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [1, 5, 4, 0, 2, 6, 5, 1, 3, 7, 6, 2, 0, 4, 7, 3, 2, 1, 0, 3, 5, 6, 7, 4] point3f[] points = [(-0.5, -0.5, -0.5), (0.5, -0.5, -0.5), (0.5, -0.5, 0.5), (-0.5, -0.5, 0.5), (-0.5, 0.5, -0.5), (0.5, 0.5, -0.5), (0.5, 0.5, 0.5), (-0.5, 0.5, 0.5)] } }""")
Unfortunately, the above snippet is not effective, at least in my tests. There's a workaround for this is to procedurally editing an Inline USD node. However, I'm interested in the magic of the implementation of the Inline USD node, as the flattened stage of this is the same as the python one…
Cheers,
Calvin