How do I learn where the source file for a given Python module is installed? (Is the method is different on Windows than Linux?)
(I want to look at the datetime module sources, but I thought I'd ask a more general question.)
|
|
|
For a pure python module you can find the source by looking at If you download a python source tarball and extract it, the modules' code can be found in the Modules subdirectory. For example, if you want to find the datetime code for python 2.6, you can look at
You can also find the latest svn version on the web at http://svn.python.org/projects/python/trunk/Modules/datetimemodule.c |
|||||||
|
|
Running
I'm not sure what those bad mtime's are on my install! |
|||||||||
|
|
For modules coming from
|
|||
|
|
|
I realize this answer is 4 years late, but the existing answers are misleading people. The right way to do this is never It's the Unless you want to learn and implement the rules (which are documented, but painful, for CPython 2.x, and not documented at all for other implementations, or 3.x) for mapping Meanwhile, every Python version's source from 2.0+ is available online at |
|||
|
|
|
New in Python 3.2, you can now use e.g. |
|||
|
|
|
In the python interpreter you could import the particular module and then type help(module). This gives details such as Name, File, Module Docs, Description et al. Ex:
et al |
||||
|
|
|
The
|
||||
|
|
|
Check out this nifty "cdp" command to cd to the directory containing the source for the indicated Python module: http://chris-lamb.co.uk/2010/04/22/locating-source-any-python-module/ |
|||
|
|
Not all python modules are written in python. Datetime happens to be one of them that is not, and (on linux) is datetime.so. You would have to download the source code to the python standard library to get at it. |
|||||||
|
|
Here's a one-liner to get the filename for a module, suitable for shell aliasing:
Set up as an alias:
To use:
|
|||
|
|
|
from the standard library try imp.find_module
|
|||
|
|