Manually installing PIL

2008-01-02 Thread Jose Ignacio Gisbert
Hello All, Does somebody install PIL manually??, I mean, copy directories manually without executing setup.py. I saw an identical message from Guirai, but I didn't see any response. Thanks in advance! Best Regards, Naxo -- http://mail.python.org/mailman/listinfo/python-list

RE: *SPAM*: 04.0/4.0 - Re: how to maximize a Tkinter Window in python TK???

2007-12-12 Thread Jose Ignacio Gisbert
If you want to start with your main window maximized, you can do: root = Tk() root.state("zoomed") Regards, Naxo -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Matimus Enviado el: jueves, 13 de diciembre de 2007 2:18 Para: python-list@python.org Asunto:

RE: xmlrpclib.binary to a file doubt

2007-12-12 Thread Jose Ignacio Gisbert
Regards, Naxo _ De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Jose Ignacio Gisbert Enviado el: miƩrcoles, 12 de diciembre de 2007 9:12 Para: python-list@python.org Asunto: xmlrpclib.binary to a file doubt Hi all, I have a problem in my application which us

xmlrpclib.binary to a file doubt

2007-12-12 Thread Jose Ignacio Gisbert
Hi all, I have a problem in my application which uses xml-rpc methods. From one hand I can send a file to a server doing f=open(Myfile,'rb') g=f.read() name=(f.name).split("/") name=name[len(name)-1] calltosendmethod(xmlrpclib.Binary(g),name) And it works fine. But on the other han

RV: Receiving messages blocks all :-(

2007-12-04 Thread Jose Ignacio Gisbert
First, sorry for sending this mail to this list, I know this is off-topic, but xmpppy-devel mailing list is out of work :-( If someone uses xmpppy, please try to answer me, or at least give me a more adequate mailing list, please. Thank you. ---

Send file in base64

2007-12-04 Thread Jose Ignacio Gisbert
Hi all, I need to send a file to a server using xmlrpc api. The receiver must get file data in base64 type, and what I do is: openfilename=tkFileDialog.askopenfilename(filetypes=[("all files", "*")]) f=open(tlocald.get(),'r') functionsend(xmlrpclib.Binary(f), f.name) And what I get i

Variables and their domain

2007-11-29 Thread Jose Ignacio Gisbert
Hi all, I have one doubt, in my applciation I have a method (Method1) which has other method (Method2) inside of it. Ok, in my first method I define a variable "lista" which is an array, an other one, "lb", which is a listbox with some elements inserted from lista. Then, when I do a double clic