Normally I have to do in every file something like this :
import os, sys
sys.path.extend(['lib', '../lib'])
Is there a easy way. So I dont have to do this in every file ?
So that I can simply do :
from abc import *
cant understand how this work... https://docs.python.org/2/library/pkgutil.html#module-pkgutil
but probably some __init__.py
trick may work !