Primitive Python Version of GWT Working
I'm pleased to announce that, after a very busy weekend and one or two weeknights, I've successfully built a Python equivalent to the Google Web Toolkit (GWT) that can handle half the Hello World example.
It sounds small but the pieces are largely all there in a primitive state:
- a Python-to-JavaScript translator
- Python datatypes
- UI widgets written in Python
- boiler plate HTML
Now it's just a case of incrementally improving each of these areas.
You can see the result in revision 19 at:
http://pyworks.org/svn/py-gwt/hello-experiment/
Join the mailing list if you want to get involved in any way.
UPDATE (2006-05-26): The project now has a name and a website: pyjamas
Comments (14)
SomePythonUser on May 24, 2006:
The example doesn't work on my FF.
I hope that the project will get some more attention.
wmil on May 24, 2006:
Naturally it works in IE, and not FF. Because IE likes to guess the real mime type.
James Tauber on May 24, 2006:
At this stage you should check out the code from svn and run it locally.
anonymous on May 24, 2006:
Is this going to be a real project or a throw-away experiment?
pythonista on May 24, 2006:
James Tauber on May 24, 2006:
fwiffo on May 24, 2006:
Python and Ruby are much better fits for this sort of thing than Java (BDSM) since they're dynamically typed and have object models much more similar to Javascript's.
James Tauber on May 24, 2006:
F Milton on May 24, 2006:
Jade Thorpe on May 25, 2006:
Bob on May 26, 2006:
Domingo on June 3, 2006:
victorden on Sept. 18, 2006:
Add a Comment
Last Modified: May 26, 2006
Author: jtauber
n[ate]vw on May 24, 2006: