How can I load a Python module given its full path? Note that the file can be anywhere in the filesystem, as it is a configuration option.
|
|
There are equivalent convenience functions for compiled Python files and DLLs. |
|||||||||||||||||
|
|
The advantage of adding a path to sys.path (over using imp) is that it simplifies things when importing more than one module from a single package. For example:
|
|||
|
|
|
|||
|
|
|
Do you mean load or import? You can manipulate the sys.path list specify the path to your module, then import your module. For example, given a module at:
You could do:
|
|||||||
|
|
|
|||
|
|
|
This should work
|
||||
|
|
I believe you can use imp.find_module() and imp.load_module() to load the specified module. You'll need to split the module name off of the path, i.e. if you wanted to load "/home/mypath/mymodule.py" you'd need to do "imp.find_module('mymodule', '/home/mypath/')", but that should get the job done. |
|||
|
|
|
You can also do something like this and add the directory that the config file is sitting in to the python load path, and then just do a normal import, assuming you know the name of the file in advance, in this case "config" Messy but it works.
|
|||
|
|
|
I believe you want this function from the standard library: http://docs.python.org/lib/module-imp.html#l2h-5362 |
|||
|
|
|
I made a package that uses
You can get it at: http://pypi.python.org/pypi/import_file or at |
|||
|
|
