I'm trying to import a function which is in a module inside a package in Python, but when i try:
from package.module import some_function
Python executes the package's __init__.py but it can't happen.
Is there a way to import the function telling Python to ignore the package's __init__.py?
Thanks
__init__.py– Jakob Bowyer Dec 7 '12 at 13:25sys.pathto make it work, but they'd be hacks at best. Perhaps you can restructure things so that you__init__.pyis empty? Or at least doesn't cause any undesired side-effects? – jszakmeister Dec 7 '12 at 13:27