That’s right, there is currently no convenience function for the normals. You have to fall back to the normal JSON API and execute the ComputeNormals command before loading the data from the Normals node.
Assuming the Camera object camera with serial number serial the necessary code should look something like this (untested):
# After camera.compute_point_map():
with NxLibCommand(CMD_COMPUTE_NORMALS) as cmd:
cmd.parameters()[ITM_CAMERAS] = serial
cmd.execute()
normals = camera[ITM_IMAGES][ITM_NORMALS]