This is a python rooky question... The file structure is like that
./part/__init__.py
./part/Part.py
./__init__.py
./testCreation.py
when running python3 testCreation.py I get a
part = Part() TypeError: 'module' object is not callable
no complain about import. so I wonder what the issue is !?
also coming from Java, can some one comment if organising classes for python is better just in packages with subpaths or in modules (ommit the init.py file) ?
Partis a module, not a class.from part.Part import Part, but a minimal reproducible example would help.