Re: Python-list Digest, Vol 64, Issue 644

2009-01-29 Thread M Kumar
is python a pure objected oriented language? On Thu, Jan 29, 2009 at 2:08 PM, wrote: > Send Python-list mailing list submissions to >python-list@python.org > > To subscribe or unsubscribe via the World Wide Web, visit >http://mail.python.org/mailman/listinfo/python-list > or, via

is python Object oriented??

2009-01-29 Thread M Kumar
Object oriented languages doesn't allow execution of the code without class objects, what is actually happening when we execute some piece of code, is it bound to any class? Those who have time and consideration can help me -- Regards, Maneesh KB Comat Technologies Bangalore Mob: 9740-19230

Re: is python Object oriented??

2009-01-29 Thread M Kumar
but still I am not clear of the execution of the code, when we write or execute a piece of python code without defining class, predefined class attributes are available (not all but __name__ and __doc__ are available). does it mean anything to this topic. Is it necessory to have __module__, __dict_

Re: Python-list Digest, Vol 65, Issue 365

2009-02-18 Thread M Kumar
I think the given statement below will give you what you r looking .__file__print On Wed, Feb 18, 2009 at 2:43 PM, wrote: > Send Python-list mailing list submissions to >python-list@python.org > > To subscribe or unsubscribe via the World Wide Web, visit >http://mail.python.org/m

os module

2009-03-02 Thread M Kumar
Hi, I am writing a server side program, clients can be any machine but the server machine is Linux. In program I want to use the OS module based on the client's operating system. But when I do "import os" m only able to get the module with the property of Linux. ANy idea how to import the module w

Re: os module

2009-03-02 Thread M Kumar
r 2, 2009 at 12:26 AM, M Kumar wrote: > > > > Hi, > > > > I am writing a server side program, clients can be any machine but the > > server machine is Linux. In program I want to use the OS module based on > the > > client's operating system. But

Re: os module

2009-03-02 Thread M Kumar
server os.sys.platform has the value "linux2". What I want is a module having clients platform value for os.sys.platform. Any way to get that? On Mon, Mar 2, 2009 at 2:17 PM, Chris Rebert wrote: > > On Mon, Mar 2, 2009 at 1:59 PM, Chris Rebert wrote: > >> > >> On Mon

Re: os module

2009-03-02 Thread M Kumar
is Rebert > wrote: > >> >> > >> >> On Mon, Mar 2, 2009 at 12:26 AM, M Kumar > wrote: > >> >> > > >> >> > Hi, > >> >> > > >> >> > I am writing a server side program, clients can be any mac

Help in reading the pdf file

2009-03-26 Thread M Kumar
Hi, I need to read pdf files and extract data from it, is there any way to do it through python. thanks & reagards Maneesh KB -- http://mail.python.org/mailman/listinfo/python-list

Help in getting the IP address of client machines

2009-05-04 Thread M Kumar
Hi, I am using pylons web framework for my server. I need to get the ip address of the client machine which made a request to the server in my python code. How can I do that, I am new to pylons and the existing server has so many applications. looking forward to get some solutions from the kind fr

help required with pylons

2009-05-05 Thread M Kumar
Hi, I am having an application server in pylons, which was giving error sometimes and sometimes it gives the result. I will copy paste the error below. I am new to pylons and not getting any clue of this kind of behavior. Please help me what should I do to avoid this kind of errors. -

commands module for windows

2009-12-01 Thread M Kumar
Dear all, Is there any python module for windows which is equivalent to commands module in linux? -- thanks & regards, Maneesh KB -- http://mail.python.org/mailman/listinfo/python-list

Re: commands module for windows

2009-12-01 Thread M Kumar
can I use this module to store output to a python variable? I am looking for something similar to commands.getoutput("") On Wed, Dec 2, 2009 at 11:42 AM, Chris Rebert wrote: > On Tue, Dec 1, 2009 at 10:05 PM, M Kumar wrote: > > Is there any python module for windows whi

Re: commands module for windows

2009-12-01 Thread M Kumar
thank you very much Chris :) On Wed, Dec 2, 2009 at 12:10 PM, Chris Rebert wrote: > > On Wed, Dec 2, 2009 at 11:42 AM, Chris Rebert wrote: > >> On Tue, Dec 1, 2009 at 10:05 PM, M Kumar wrote: > >> > Is there any python module for windows which is equivalent to comm