class documentation

class PythonPath: (source)

View In Hierarchy

I represent the very top of the Python object-space, the module list in sys.path and the modules list in sys.modules.
Method __contains__ Check to see whether or not a module exists on my import path.
Method __getitem__ Get a python module by its given fully-qualified name.
Method __init__ Create a PythonPath. You almost certainly want to use modules.theSystemPath, or its aliased methods, rather than creating a new instance yourself, though.
Method __repr__ Display my sysPath and moduleDict in a string representation.
Method iter​Entries Iterate the entries on my sysPath.
Method iter​Modules Yield all top-level modules on my sysPath.
Method walk​Modules Similar to iterModules, this yields every module on the path, then every submodule in each package or entry.
Instance Variable importer​Cache Undocumented
Instance Variable module​Dict A dictionary mapping string module names to module objects, like sys.modules.
Instance Variable module​Loader A function that takes a fully-qualified python name and returns a module, like twisted.python.reflect.namedAny.
Instance Variable sys​Path​Hooks A list of PEP-302 path hooks, like sys.path_hooks.
Property sys​Path Retrieve the current value of the module search path list.
Method _find​Entry​Path​String Determine where a given Python module object came from by looking at path entries.
Method _smart​Path Given a path entry from sys.path which may refer to an importer, return the appropriate FilePath-like instance.
Instance Variable _sys​Path A sequence of strings like sys.path. This attribute is read-only.
Instance Variable _sys​Path​Factory Undocumented
def __contains__(self, module): (source)
Check to see whether or not a module exists on my import path.
Parameters
module:strThe name of the module to look for on my import path.
def __getitem__(self, modname): (source)
Get a python module by its given fully-qualified name.
Parameters
modname:strThe fully-qualified Python module name to load.
Returns
PythonModulean object representing the module identified by modname
Raises
KeyErrorif the module name is not a valid module name, or no such module can be identified as loadable.
def __init__(self, sysPath=None, moduleDict=sys.modules, sysPathHooks=sys.path_hooks, importerCache=sys.path_importer_cache, moduleLoader=namedAny, sysPathFactory=None): (source)

Create a PythonPath. You almost certainly want to use modules.theSystemPath, or its aliased methods, rather than creating a new instance yourself, though.

All parameters are optional, and if unspecified, will use 'system' equivalents that makes this PythonPath like the global theSystemPath instance.

Parameters
sys​Patha sys.path-like list to use for this PythonPath, to specify where to load modules from.
module​Dicta sys.modules-like dictionary to use for keeping track of what modules this PythonPath has loaded.
sys​Path​Hookssys.path_hooks-like list of PEP-302 path hooks to be used for this PythonPath, to determie which importers should be used.
importer​Cachea sys.path_importer_cache-like list of PEP-302 importers. This will be used in conjunction with the given sysPathHooks.
module​Loadera module loader function which takes a string and returns a module. That is to say, it is like namedAny - *not* like __import__.
sys​Path​Factorya 0-argument callable which returns the current value of a sys.path-like list of strings. Specify either this, or sysPath, not both. This alternative interface is provided because the way the Python import mechanism works, you can re-bind the 'sys.path' name and that is what is used for current imports, so it must be a factory rather than a value to deal with modification by rebinding rather than modification by mutation. Note: it is not recommended to rebind sys.path. Although this mechanism can deal with that, it is a subtle point which some tools that it is easy for tools which interact with sys.path to miss.
def __repr__(self): (source)
Display my sysPath and moduleDict in a string representation.
Returns
strUndocumented
def iterEntries(self): (source)
Iterate the entries on my sysPath.
Returns
a generator yielding PathEntry objects
def iterModules(self): (source)
Yield all top-level modules on my sysPath.
def walkModules(self, importPackages=False): (source)
Similar to iterModules, this yields every module on the path, then every submodule in each package or entry.
importerCache = (source)

Undocumented

moduleDict = (source)
A dictionary mapping string module names to module objects, like sys.modules.
moduleLoader = (source)
A function that takes a fully-qualified python name and returns a module, like twisted.python.reflect.namedAny.
sysPathHooks = (source)
A list of PEP-302 path hooks, like sys.path_hooks.
@property
sysPath = (source)
Retrieve the current value of the module search path list.
def _findEntryPathString(self, modobj): (source)
Determine where a given Python module object came from by looking at path entries.
def _smartPath(self, pathName): (source)
Given a path entry from sys.path which may refer to an importer, return the appropriate FilePath-like instance.
Parameters
path​Namea str describing the path.
Returns
a FilePath-like object.
_sysPath = (source)
A sequence of strings like sys.path. This attribute is read-only.
_sysPathFactory = (source)

Undocumented