Currently there is no documented obvious way to remove existing NIX entities.
When looking through the code, one can see, that there are __delitem__ methods on the custom container classes, so items can be removed either by accessing these magic functions or by using the del keyword, but this is not obvious to the average user.
Is there a reason for not providing a remove or delete method on Container instances?