Here\'s the structure I\'m working with:
directory/ script.py subdir/ __init__.py myclass01.py
from subdir.* import *
You can not use '*' this way directly after the 'from' statement. You need explict imports. Please check with the Python documentation on imports and packages.