pythonで特定のスクリプトからの相対パスをえる方法は次のような感じ

import os

this_dir = os.path.dirname(os.path.realpath(__file__))
filename = os.path.join(this_dir, 'lib')
print filename

rubyのrequire_relativeのようなことは,パッケージシステムのpythonでは基本的にしないが、自分はついやってしまう。