Possible Duplicate:
Retrieving python module path
I am working on python,i installed web.py framework to develop small web applications and installed successfully. When i tried to import the from python interpreter as below
>>> import web
>>> 
Actually i want to know the installation path of the framework or a module where it is installed so i tried
>>> import sys
>>> import sys.path
ofcourse it is showing the path of many modules installed in sitepackages, but whether we can find the path of the module if we know the module name in python
 
     
    