How to check and list object kids?

Hi

I would like to list the mesh object kids by each ‘Empty’ object parent.

I was browsing the Blender API Object class and only I could find was a [object].getParent() method.

Any hint?

How about the outliner?

import bpy
def getChildren(parent): return [ob for ob in bpy.data.objects if ob.parent = parent]

<S> Ideasman42

That’s perfect.

Thanks