Re: math equation, svg and matplotlib

2008-10-29 Thread kib2
André a écrit : Would anyone have a quick and dirty code sample to create an svg output of a sample math equation using matplotlib? André Hi André, maybe that's not what you want be there's something like this here (a converter from DVI to SVG in pure Python), look at the samples at the

Re: tkinter textwidget problem

2008-10-03 Thread kib2
Tk/Tkinter apparently considers the position 1.13 to be after the last word in the text. You get the same problem if you set the insertion point just after the word 'two' for example: text.index('insert') returns 1.7 and text.index('insert wordstart') returns 1.7 too... Exactly. My solution

tkinter textwidget problem

2008-10-02 Thread kib2
Hi, In a tkinter TextWidget I would like to retrieve the last typed word. I've tried this with the 'wordstart' Expression [From the effbot site, wordstart and wordend moves the index to the beginning (end) of the current word. Words are sequences of letters, digits, and underline, or single

Re: text processing

2008-09-25 Thread kib2
You can do it with regexps too : -- import re to_watch = re.compile(r(?Pnumber\d+)[/](?Pletter[A-Z]+)) final_list = to_watch.findall(12560/ABC,12567/BC,123,567,890/JK) for number,word in final_list : print number:%s -- word:

Re: Genetic programming: pygene, pygp, AST, or (gasp) Lisp?

2008-07-20 Thread kib2
David Boddie a écrit : On Sunday 20 July 2008 09:52, John Ladasky wrote: Is there a way to interface Lisp to Python, so that I can do all the interface programming in the language I already know best -- and just do the genetic parts in Lisp? I haven't seen exception handling in Lisp, a

Re: Going from Tkinter to pyQT

2008-06-23 Thread kib2
Alex Bryan a écrit : I had a guy on this mailing list tell me that pyQT is much better than Tkinter, and after looking into it a bit I think he is right. However, I can't find much on it. I want to know if there are any good books or online tutorials that would be helpful. I doubt there is