Re: Discovery IP in connection

2009-07-28 Thread Djames Suhanko
Thanks, all! I didn't tried to print addr. :-( sorry all. I'm learning python yet. Thanks again ! On Mon, Jul 27, 2009 at 8:23 PM, Piet van Oostrum wrote: >>>>>> Djames Suhanko (DS) wrote: > >>DS> Hello,all! >>DS>  I wrote a little programa th

Discovery IP in connection

2009-07-27 Thread Djames Suhanko
DGRAM ) mySocket.bind ( ( '', 514 ) ) data, addr = mySocket.recvfrom(100) print data -- Djames Suhanko LinuxUser 158.760 -- http://mail.python.org/mailman/listinfo/python-list

Re: Remoting over SSH

2009-07-08 Thread Djames Suhanko
Hello! I wrote a litle program that send commands to many cluster nodes: #!/usr/bin/env python #By: Djames Suhanko #servers list sincroniza =["server1.domain","server2.domain", "server3.domain"] import pexpect import sys from threading import Thread #the us

Re: BMP32 for linux

2009-06-01 Thread Djames Suhanko
ystem, the png images aren't supported anymore. I did use of pygame.image.get_extended() function. In my desktop it return 1, but when put in my system, this function returns 0. Do you have some tip more? Thank you again!! On Mon, Jun 1, 2009 at 12:53 PM, Scott David Daniels wrote: &

BMP32 for linux

2009-06-01 Thread Djames Suhanko
Hello, all! Did you know the bmp32 module for linux? This module can to load bmp image with alpha channel where is not supported others images formats. But I couldn't to found this module to install in my linux box. :-( do you have tips? Thanks ! -- Djames Suhanko LinuxUser 158.760 --

pygame error: file is not a windows bmp file

2009-05-29 Thread Djames Suhanko
ou help me? (and sorry my terrible english). -- Djames Suhanko LinuxUser 158.760 -- http://mail.python.org/mailman/listinfo/python-list

Re: Window (tkinter) with no decoration

2009-02-03 Thread Djames Suhanko
Exactly ! I thank you very much, Matimus !!! >> I would like to do a menu bar like kicker or windows menu. is possible? > Maybe you are looking for this? > rt = Tkinter.Tk() > rt.overrideredirect(True) -- Djames Suhanko LinuxUser 158.760 -- http://mail.python.org/mailman/

Window (tkinter) with no decoration

2009-02-03 Thread Djames Suhanko
Hello, programmers! I would like to do a menu bar like kicker or windows menu. is possible? -- Djames Suhanko LinuxUser 158.760 -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter - problem closing window

2009-01-07 Thread Djames Suhanko
) The problem was solved when removed the second "mainloop". I will use the Toplevel instead Tk() again. Thank you for the nice lesson !! On Tue, Jan 6, 2009 at 6:47 AM, Marc 'BlackJack' Rintsch wrote: > On Mon, 05 Jan 2009 12:25:53 -0200, Djames Suhanko wrote: > >&g

Tkinter - problem closing window

2009-01-05 Thread Djames Suhanko
i(self): 25resultado = self.gera_seis() 26raiz = Tk() 27F = Frame(raiz) 28F.pack() 29hello = Label(F, text=resultado) 30hello.pack() 31F.mainloop() 32 33 root = Tk() 34 root.title("$$$ Loteria $$$") 35 app = App(root) 36 root.mainloop() -- Djames Suhanko LinuxUser 158.760 -- http://mail.python.org/mailman/listinfo/python-list