import core from core import * __all__ = ['core'] __all__.extend(core.__all__) print __all__ import attributes from attributes import * __all__.append('attributes') __all__.extend(attributes.__all__) # this import needs to come last import operations from operations import * __all__.append('operations') __all__.extend(operations.__all__)