Is it possible to import modules based on location?
(eg. do all modules i import have to be in /usr/lib64/python2.5/ or a similar dir?)
I'd like to import a module that's local to the current script.
|
2
|
|
|
|
|
|
You can extend the path at runtime like this:
|
||
|
|
|
|
You can edit your PYTHONPATH to add or remove locations that python will search whenever you attempt an import. |
||
|
|
|
|
|
||
|
|
|
|
You can import module that are in the same path the module you are importing to. For example: Directory contains:
Or you can add any directory to your PYTHON_PATH variable:
|
||
|
|
|
|
It searches in ./lib by default. |
||
|
|
|
|
For low-level control over the import process, the imp module lets you import modules from arbitrary open files under arbitrary names. For example, if this is
Then this code:
prints "hello, world". |
||
|
|
|
|
Use init.pyThe only problem with doing dynamic modification of sys.path is that you need to repeat it in every script and hard-code the pathnames. That gets messy and non DRY if you have even two or three files. Instead, if your file structure looks like this:
Here the init.py's are blank files created with touch, while foo.py and baz.py are actual python scripts. Then you can do something like this:
Structuring your stuff as a package from the beginning is a little more work but makes it much easier to scale the project later and to see where imports are coming from. Moreover, if you move stuff around, you can use a single symlink rather than doing a find/replace through your codebase. E.g. if you moved '~/foo' to '~/downloads/foo', just do this:
And all your imports will still work. |
||
|
|