I made entities in parent-child relationship:
# Create Employee entity
employee = Employee()
employee.put()
# Set Employee as Address entity's parent directly...
address = Address(parent=employee)
# ...or using its key
e_key = employee.key()
address = Address(parent=e_key)
# Save Address entity to datastore
address.put()
Then, suppose that we only know the address entity and want to get the parent (employee). we can get address' parent:
address.key().parent()
However, I do not know how to get the employee's child when I know employee only. I found that Key.from_path(...) method was for getting Key from parent-child relationship, but I do not know how to deal with.