Re: where to download md5.py?

2005-11-02 Thread robert . dowell
So when you type this into an interactive session: >>> import sha >>> help(sha) You get an error? -- http://mail.python.org/mailman/listinfo/python-list

Re: Filepath string manipulation help

2005-11-02 Thread robert . dowell
import os print os.path.basename(filepath) -- http://mail.python.org/mailman/listinfo/python-list

Re: Filepath string manipulation help

2005-11-04 Thread robert . dowell
I just assumed he had heard of me and knew better than to take my advice. :-) -- http://mail.python.org/mailman/listinfo/python-list

Re: debugger

2005-11-08 Thread robert . dowell
Benji York wrote: > mclaugb wrote: > > Is there a decent debugger to use with IDL? I have briefly about "PDB" but > > this looks pretty limited in features and difficult to use. > > You might like Winpdb: > http://www.digitalpeers.com/pythondebugger/ > -- > Benji York Not Found The requested UR

Re: debugger

2005-11-08 Thread robert . dowell
Benji York wrote: > [EMAIL PROTECTED] wrote: > > Benji York wrote: > >>You might like Winpdb: > >>http://www.digitalpeers.com/pythondebugger/ > > > > Not Found > > > > The requested URL /pythondebugger/-- was not found on this server. > > Apache/2.0.52 (Red Hat) Server at www.digitalpeers.com Port

Re: PIL-> Tkinter

2005-11-09 Thread robert . dowell
I have an app that I wrote to move images from a camera/portable media to an archive directory. It is using TKInter and PIL to display each jpg as it is transfered. I can email you the code if you would like. -- http://mail.python.org/mailman/listinfo/python-list

Re: PIL-> Tkinter

2005-11-09 Thread robert . dowell
I'm having issues with gmail at work but I will try to email it from home tonight. -- http://mail.python.org/mailman/listinfo/python-list

Re: Stopping Execution

2005-11-10 Thread robert . dowell
import sys sys.exit -- http://mail.python.org/mailman/listinfo/python-list

Re: How to find the type ...

2005-12-09 Thread robert . dowell
>>> thisisastring = "1" >>> thisisanint = 1 >>> type(thisisastring) >>> type(thisisanint) >>> thisisastring = int(thisisastring) >>> thisisanint = str(thisisanint) >>> type(thisisastring) >>> type(thisisanint) >>> -- http://mail.python.org/mailman/listinfo/python-list

Re: Retrieving Filename from Path

2005-08-31 Thread robert . dowell
>>> import os.path >>> help(os.path) Help on module ntpath: NAME ntpath - Common pathname manipulations, WindowsNT/95 version. FILE c:\data\utils\python24\lib\ntpath.py DESCRIPTION Instead of importing this module directly, import os and refer to this module as os.path. FUNCTION