Hi there!
I'm wondering if there is a "package" instruction in python so I can in a directory keep packaging all the classes and I don't have to import them every time. I mean, if in a same directory I have a class DutiesManager that controls an array of instances of the class Dutie, I don't want to do in the DutiesManager an "import Dutie", just "package foo.foo1" and I can use in DutiesManager all the classes of that package.
I don't know if I have explained that good, sorry for my English.
Thank you!!!