hello,
i am trying to figure out the best way to organise my python script. I have split it into modules. some modules perform a particular function, like ‘subdivide_curves’ or ‘shrinkwrap_curves’ etc. But the enclosed functions or classes i have just named in the same way ‘subdivide_curves’ and ‘shrinkwrap_curves’.
so when i import the modules i have to write:
import dev.rigging.shrinkwrap_curves as shrinkwrap_curves
shrinkwrap_curves.shrinkwrap_curves()
is there a smarter way to organise this, or should i just find a slightly different way of naming the module or function. Im trying to keep things as simple as possible.
thanks alot,
Sam
