Model.hm_me_childrenget#

Model.hm_me_childrenget(id)#

Returns the first-level children part IDs.

Parameters:

id (int) – The ID of the part to query.

Returns:

Example#

Get the first - level children parts for a part with ID 10#
import hm
import hm.entities as ent

model = hm.Model()

_,result = model.hm_me_childrenget(id=10)

print("childrenPart", result.childrenPart)