We currently have the function cocos.identify_cocos and the class cocos.Transform. In the former case, the cleanest way to use it is:
from pyloidal.cocos import identify_cocos
c = identify_cocos(...)
In the latter case, to make it clear what the class does:
from pyloidal import cocos
t = cocos.Transform(...)
These styles should be unified, either by renaming identify_cocos to identify, or by renaming Transform to TransformCOCOS/COCOSTransform.
We currently have the function
cocos.identify_cocosand the classcocos.Transform. In the former case, the cleanest way to use it is:In the latter case, to make it clear what the class does:
These styles should be unified, either by renaming
identify_cocostoidentify, or by renamingTransformtoTransformCOCOS/COCOSTransform.