Re: Database intensive application

2007-08-12 Thread Viewer T.
On Aug 11, 10:08 pm, Rohit [EMAIL PROTECTED] wrote: I am a novice. I want to know whether Python can be used to develop client/server database and web applications like .NET. Which is the best book/source to learn Python? O'reilly's Learning Python by David Ascher and Mike Lutz has a

Images in Tkinter

2007-07-20 Thread Viewer T.
I wrote a class in which I have to use Tkinter images. When I create an image object in the class and reference it with the image attribute of label within the class, it does not dhow the image. It just shows a blank label that conforms to the size of the image. My images is a GIF image. My code

Access Denied while trying to delete file from python script

2007-07-14 Thread Viewer T.
I am trying to write a script that deletes certain files based on certain criteria. What I am trying to do is to automate the process of deleting certain malware files that disguise themselves as system files and hidden files. When I use os.remove() after importing the os module is raises a

Graph plotting module

2007-06-04 Thread Viewer T.
Is there a python module anywhere out there that can plot straight line graphs, curves (quadratic, etc). If anyone knows where I can download one, please let me know. -- http://mail.python.org/mailman/listinfo/python-list

Modules for peer-to-peer chat program

2007-04-24 Thread Viewer T.
I would like to know which modules I would need in order to create peer-to-peer chat program in python using Tkinter. If I would need modules that do not come packaged with python, I would appreciate information on where I can get them. Thanks. --

Python interfacing with COM

2007-01-28 Thread Viewer T.
I am quite a newbie and I am trying to interface with Microsoft Word 2003 COM with Python. Please what is the name of the COM server for Microsoft Word 2003? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to run external program?

2007-01-12 Thread Viewer T.
Lad wrote: How can I run external program from Python? I use Python with XP Thank you for help A possible way to do this is the following: Let's say we want to run a program called program.exe from the path C/Program/Program.exe. We would first need to import the os module and type the