vote up 0 vote down star

I currently do this:

PYTHONPATH=/home/$USER:/home/$USER/respository:/home/$USER/repository/python-stuff

How can I make it so that the PYTHONPATH can include everything subdirectory?

PYTHONPATH = /home/$USER/....and-all-subdirectories
flag

2  
This sounds like a terrible plan. It makes some kinds of testing nearly impossible because every python file -- in a random order -- will be on the PYTHONPATH. Please describe why you think this is helpful. What problem do you have? What are you trying to solve by doing this? – S.Lott Oct 31 at 23:43

1 Answer

vote up 5 vote down check

It's generally a bad idea to have on sys.path two paths one of which is the parent of the other -- assuming the sub-directory one contains an __init__.py file to mark it as a package, of course. If only the parent directory is in the path (and $PYTHONPATH is part of what sys.path is initialized with), modules in the subdirectory can be imported from the package, i.e., through just one filesystem path, avoiding the risk of a single module being imported under many distinct guises.

So why don't you just put __init__.py files in all subdirectories that need it, and use package imports?

While I think your request is a bad idea, it's certainly doable -- the Unix find command can easily list all subdirectories of a directory, one per line (find . -type d), and you can easily glue the lines together e.g. by piping find's output to tr '\n' :.

link|flag
Thanks Alex Martelli! You need to write more books. – alex Nov 1 at 0:00
Yes I do, but finding the time and energy is hard;-). – Alex Martelli Nov 1 at 4:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.