Re: Python plugins for netbeans 6 IDE?
Did you managed to work out NetBeans and Python? Ken McDonald wrote: > > Do any such exist? And do you find them worthwhile? I couldn't see any > browsing the netbeans pages, but that doesn't mean they're not out > there... > > Thanks, > Ken > -- > http://mail.python.org/mailman/listinfo/python-list > > -- View this message in context: http://www.nabble.com/Python-plugins-for-netbeans-6-IDE--tp12843005p15186891.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list
PIL linux err
Hi, I'm trying to run simple .py on linux, which is using PIL. Below error message which I receive: File "/usr/lib/python2.4/site-packages/PIL/Image.py", line 960, in histogram self.load() File "/usr/lib/python2.4/site-packages/PIL/ImageFile.py", line 180, in load d = Image._getdecoder(self.mode, d, a, self.decoderconfig) File "/usr/lib/python2.4/site-packages/PIL/Image.py", line 375, in _getdecoder raise IOError("decoder %s not available" % decoder_name) IOError: decoder jpeg not available Do you know what might be the problem? michal -- View this message in context: http://www.nabble.com/PIL-linux-err-tp15211773p15211773.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list
how to set timeout while colling a soap method?
Hello! I wrote some some python code for executing a soap method: import SOAPpy from SOAPpy import WSDL _server = WSDL.Proxy(some wsdl) r=_server.generuj(some parameters...) print r.encode('cp1250') It works fine. However, the execution time of this soap method might be long. Therefore, I would like to set a timeout like 1 minute, after which I would post a timeoute message. Any ideas? Greats, -- View this message in context: http://www.nabble.com/how-to-set-timeout-while-colling-a-soap-method--tp24461403p24461403.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list
Re: how to set timeout while colling a soap method?
Yes, that is what I was looking for. Greets!! -- View this message in context: http://www.nabble.com/how-to-set-timeout-while-colling-a-soap-method--tp24461403p24496577.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list