1 comment

[ 4.8 ms ] story [ 14.1 ms ] thread
From my bashrc:

    # http://chris-lamb.co.uk/2010/04/22/locating-source-any-python-module/
    cdp () {
        cd "$(python -c "import os.path as _, ${1}; \
            print _.dirname(_.realpath(${1}.__file__[:-1]))"
        )"
    }
To go to e.g. the orm of sqla, I just type:

    $ cdp sqlalchemy.orm