From: dman <ds...@ri...> - 2001-08-17 15:13:07
|
On Fri, Aug 17, 2001 at 09:59:47AM -0500, Ryan Ware wrote: | Hello, | | I am interested in learning more about Jython. What is commonly used to | develop gui interfaces. Do you use swing, tkinter, or something else? The only GUI toolkits that work with Jython are those that work with Java. Mainly this includes AWT and Swing, though I have heard that someone created Java bindings for Tk and GTK+. An alternative is to have a CPython process as an RPC server that runs the GUI and a Jython process that does other processing and sends data to the CPython process for displaying in the GUI (via RPC). HTH, -D |