where to download md5.py?
Fredrik Lundh
fredrik at pythonware.com
Wed Nov 2 13:55:33 EST 2005
"Bell, Kevin" wrote:
> I don't have sha either, but my system administrators don't know a thing
> about python. How would they block it? That is the dupinator that I'm
> talking about. Where would md5 and sha be if they were there?
> C:\Python24\Lib?
if you're using 2.4 on Windows, they're included in the python DLL.
what happens if you start Python and type
>>> import md5
>>> import sha
?
if either of these gives an ImportError, what does
>>> import sys
>>> sys.version
>>> sys.builtin_module_names
print ?
</F>
More information about the Python-list
mailing list