Fwd: Installation Errors

2019-09-05 Thread venu gopal reddy
Hi Python Support Team, I have subscribed now and re-sending my query. Please suggest. I have an Issue installing python 3.7 on my work computer. It says core.msi package not found during installation. Can you please help me with steps to resolve this issue? Thank you, Venu -- https://mail.pyth

How to forward request through lighttpd server to xmlrpc server

2010-04-29 Thread Mishra Gopal-QBX634
Hi, I have Lighttpd web server running on port 80. and i have a xmlrpc web server running on port 8085 How i can send all my request/response to xmlrpc server through lighttpd server running on port 80? Thanks and regards, Gopal -- http://mail.python.org/mailman/listinfo/python-list

RE: How to reduce the memory size of python

2010-01-07 Thread Mishra Gopal-QBX634
mport getLogger' But it still take the same 1 MB memory. Instead of loading whole logging module only load the getLogger function. I there any way to save the memory with taking care of small things in code.. Thanks, Gopal -Original Message- From: python-list-bounces+qbx63

How to reduce the memory size of python

2010-01-06 Thread Mishra Gopal-QBX634
ry devices. Any suggession is highly helpfull to me. Thanks, Gopal -- http://mail.python.org/mailman/listinfo/python-list

how to create nested classes dynamically

2009-11-03 Thread gopal mishra
bb1 = property(getBB1, setBB1, None, None) bb2 = ... bb = BB() class CC(object): cc = CC() aa = AA() print aa.bb.bb1 aa.bb.bb2 = '10' print aa.bb.bb2 I want to achive dot structure get or set value.i.e. aa.bb.bb1 Than

How to save clipboard data as bmp file

2009-04-21 Thread gopal mishra
I have used ImageGrab.grabclipboard() to get the clipboard image data, it returns None. This function only supports if the clipboard data format is CF_BITMAP. Is there any way to save clipboard data format CF_ENHMETAFILE to bitmap file using win32 programming. -- Gopal > I am trying to save

How save clipboard data as bmp file

2009-04-20 Thread gopal mishra
Hi, I am trying to save my clipboard data (format is CF_ENHMETAFILE) as BitMap file (.BMP). Can any on suggest how to do this. Thanks & Regards, Gopal -- http://mail.python.org/mailman/listinfo/python-list

OMPC- m-script to python script convertor

2009-03-16 Thread gopal mishra
in __getitem__ s.init_data() File "C:\Python25\lib\site-packages\ompc\ompclib\ompclib_numpy.py", line 910, in init_data self._a = np.array(list(self), dtype='f8').reshape(self.msize[::-1]) MemoryError Is there any updated OMPC version, which has solved this issu

Install NumPy in python 2.6

2009-03-13 Thread gopal mishra
I can install numpy? Thanks, Gopal -- http://mail.python.org/mailman/listinfo/python-list

How to get text from a surface

2009-01-27 Thread gopal mishra
text from the pygame surface. Thanks, Gopal -- http://mail.python.org/mailman/listinfo/python-list

RE: problem in implementing multiprocessing

2009-01-18 Thread gopal mishra
o:prolo...@shortcircuit.net.au] Sent: Saturday, January 17, 2009 10:37 AM To: gopal mishra Cc: python-list@python.org Subject: Re: problem in implementing multiprocessing On Fri, Jan 16, 2009 at 7:16 PM, gopal mishra wrote: > I create two heavy objects sequentially without using multiple

RE: problem in implementing multiprocessing

2009-01-16 Thread gopal mishra
could be the sollution. my system configuration: dual-core processor winXP python2.6.1 gopal mishra wrote: > Hello, > > I am trying to implement the multiprocessing in my application to take > advantage of multiple cores. I have created two > > Separate process something l

problem in implementing multiprocessing

2009-01-15 Thread gopal mishra
Hello, I am trying to implement the multiprocessing in my application to take advantage of multiple cores. I have created two Separate process something like this. que = Queue Process(target = getData, args=(que , section, MdbFile,)).start() Process(target = getData, args=(que , section, MdbFil

cPickle

2008-09-04 Thread gopal mishra
I have 3 objects and want to save in one pickle file. I used cPickle to dump 3 objects in a pkl file i.e cPickle.dump(object1, fileobject, -1) cPickle.dump(object2, fileobject, -1) cPickle.dump(object3, fileobject, -1) I have changed the 3rd object a

How to set directory in save as combo box

2008-06-12 Thread gopal mishra
Original Message- From: Tim Golden [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2008 1:22 PM Cc: python-list@python.org Subject: Re: How to set directory in save as combo box gopal mishra wrote: > In 'save as' dialog of window application, I am trying to set the path in &

How to set directory in save as combo box

2008-06-11 Thread gopal mishra
Hi, In 'save as' dialog of window application, I am trying to set the path in 'save in' combo box using python win32 programming. How we can set the directory in the 'save in' combo box. Thanks, Gopal -- http://mail.python.org/mailman/listinfo/python-list

Changing the module not taking effect in calling module

2005-09-27 Thread Gopal
pt.py again. However, the output is not taking effect. If I shut the IDLE interpreter and all the other files and then reopen again; and then run script.py, the output is taking effect. Is there any way to improve it? I'm new to Python. -Gopal. -- http://mail.python.org/mailman/listinfo/python-list

Re: File processing

2005-09-23 Thread Gopal
Thank you very much. That works!!! -- http://mail.python.org/mailman/listinfo/python-list

Re: File processing

2005-09-23 Thread Gopal
Thanks for the reference. However, I'm not understanding how to use it. Could you please provide with an example? Like I open the file, read line and give it to parser? Please help me. -- http://mail.python.org/mailman/listinfo/python-list

File processing

2005-09-23 Thread Gopal
Hello, I'm Gopal. I'm looking for a solution to the following problem: I need to create a text file config.txt having some parameters. I'm thinking of going with this format by having "Param Name - value". Note that the value is a string/number; something like this