dazpy — DAZ Studio Python SDK

Version 2.3.0

dazpy is a Python SDK for DAZ Studio Script Server. It lets you connect to a running DAZ Studio instance, execute DazScript code, and manipulate the scene through a type-safe Python API.

from dazpy import DazClient, DazScene

scene  = DazScene()
figure = scene.find_skeleton_by_label("Genesis 9")
figure.find_bone("r_forearm").set_local_rotation(0, 0, 45)

Indices