Hacker Newsnew | comments | ask | jobs | submitlogin
Python, client side: Skulpt (skulpt.org)
84 points by s3graham 394 days ago | comments


17 points by s3graham 394 days ago | link

I just can't get myself to love JS the way I do other languages... so, this is my current little weekend project.

It's a source-to-source translator so it interops reasonably with JS and should perform similarly also.

The parser is derived from CPython's so that part is relatively complete, but the "backend" isn't done yet. For example, there's not even support for "class" yet.

-----

8 points by dtf 394 days ago | link

Very impressive work. But you'll need to implement "import this" for it to be considered a serious Python implementation.

-----

2 points by kevindication 394 days ago | link

Any support at all for modules is really a requirement to be considered a serious Python implementation.

  >>> import sys
  don't have handler for: import_stmt
But otherwise, neato.

-----

0 points by dkersten 394 days ago | link

Good point

-----

2 points by irrelative 394 days ago | link

I was just looking at the source, and I want to compliment you on how good it looks. Very well done -- really organized and thought out with much less hackery than expected (which JS seems to have a tendency to bring out...)

-----

3 points by mahmud 394 days ago | link

Neat little thing. Feared and appreciated comprehensively.

-----

1 point by pmorici 394 days ago | link

What version of the language is this and what subset of stuff works, it seems like everything I try gives me some kind of error, maybe I'm just picking the wrong things.

like it lets me create a dictionary but if I try to call the iterkeys() method it doesn't like that, and the built-in function dir() doesn't work. It has range() but not xrange()?

Cool none the less.

-----

3 points by s3graham 394 days ago | link

The version is the "still lame" version where I haven't implemented those functions yet. :)

Parser-wise it's 2.6.2, but those functions you mention are in C code in real-Python, so I need to (re-)write them in JS. You can see the list of supported global functions and method functions if you grab the source off bitbucket.

(Incidentally, "for x in a_dict" will work the same as iterkeys currently)

-----

2 points by snprbob86 394 days ago | link

Did you evaluate PyPy? I think they already have a significant RPython->Javascript backend.

-----

3 points by s3graham 394 days ago | link

Link? I don't see it at http://codespeak.net/pypy/dist/pypy/doc/docindex.html#pypy-d... (a js interpreter, but no translator).

If I were to guess, not having seen PyPy's: I'd like something about 100x smaller than PyPy seems to be, and I don't want a mandatory up-front translation "build" step.

-----

3 points by snprbob86 394 days ago | link

Apparently they removed it:

http://www.mail-archive.com/pypy-dev@codespeak.net/msg03946....

That post also mentions Pyjamas, a port of Google Web Toolkit which compiles Python instead of Java: http://pyjs.org/

-----

1 point by tome 394 days ago | link

Well this is very annoying as I had started to use PyPy's Javascript backend in metapaw-dip:

http://www.metapaw.co.uk/projects/metapaw-dip/

I really, really want to do Python client-side (or rather compile Python to Javascript). Javascript is just so painful for me. Being able to test Python code as Python would be the major reason.

-----

5 points by benhoyt 394 days ago | link

Maybe it's just me (Firefox 3.5.2 on WinXP), but the plus key ('+' and '=') doesn't seem to work, so I can't type 1+2 or x=1. Just tried it in Chrome, and that works fine. IE8 does too (though it's very slow).

Anyway, very neat project! How layered is it -- do you think it could approach the speed of JavaScript?

-----

3 points by zokier 394 days ago | link

http://www.trypython.org/

Requires Silverlight, but is far more complete as it wraps IronPython. I think its quite neat what you can do with silverlight even if its EEEEVIL MS tech.

Another cool SL trick: http://www.mix09.org/labs/gestalt/samples/canvas.2d.drawing/...

Using Python inline in your html via Silverlight and a helper JavaScript called "Gestalt". It also supports Ruby.

http://www.mix09.org/labs/gestalt/

-----

1 point by pingswept 394 days ago | link

On the topic of Silverlight: is there a reason beyond Microsoft's economic whims that Silverlight couldn't be implemented for non-IE browsers? And if it were implemented across browsers, would it easily work across different OS's?

Or is Silverlight not really a browser plugin like Flash?

(As is probably obvious, I'm totally ignorant of how browser plugins, Flash, Silverlight, and most other things work.)

-----

3 points by bmelton 394 days ago | link

I believe Silverlight works in Firefox actually.

I don't use it, but the trypython.org page has a statement:

"Target browsers are Firefox 2 & 3, Safari and IE 7 & 8. (It won't work in other browsers until there is a version of Silverlight that works with them.)"

-----

1 point by pingswept 394 days ago | link

Thanks. I did a little googling. It appears that Silverlight works (at least marginally) in several browsers on two OS's (Windows and OS X).

I'm still curious about why Silverlight works for, say, Firefox on OS X, but not Firefox on Linux. I understand that Microsoft probably wants to prevent Silverlight from working on Linux, but I'm curious whether it's something hard to do because Linux doesn't have X, Y, and Z that Silverlight requires, or is it relatively easy to do (if you had control of the codebase).

-----

2 points by gcopenhaver 394 days ago | link

There's an open source implementation of Silverlight, called Moonlight:

http://www.mono-project.com/Moonlight

I've never used it before, so I don't know how well it works or anything.

-----

1 point by pingswept 394 days ago | link

I don't actually want to use a proprietary tool like Silverlight, or an open reimplementation, but I appreciate the effort to make the comment.

Thanks.

-----

3 points by tlrobinson 394 days ago | link

Fun stuff. I've got a similar proof-of-concept project for Ruby, called "CappRuby" which targets the Objective-J runtime (not unlike how MacRuby targets the Objective-C runtime):

http://github.com/tlrobinson/cappruby

(disclaimer: it's horribly incomplete and I haven't touched it in months)

-----

2 points by s3graham 394 days ago | link

Neat.

ObjJ and Capp were my inspiration for doing a browser language without an offline convert process, so... thanks :)

I was wondering if I could use Cappuccino as the "Skulpt GUI toolkit" too, but that might start to get a bit silly with number of layers involved.

-----

6 points by DanielStraight 394 days ago | link

All I get is a blank page... Is there something I'm missing or is the site down?

-----

1 point by avibryant 394 days ago | link

All I get is a blank page too. I was very curious to look at this because I've been doing something very similar - for Smalltalk, instead of Python.

-----

5 points by uggedal 394 days ago | link

Somewhat buggy:

    >>> print 1, 2, 3
    1 1 1

-----

3 points by diN0bot 394 days ago | link

I can't get shift-+ or shift+; to print to the screen. Nothing gets printed. Shift-<other keys> works as expected. Without '+' and ':' it is quite limited.

Is this a problem on my end? FF3.1 Leopard.

-----

2 points by s3graham 394 days ago | link

oops, thanks, I'll fix that.

-----

2 points by paulbaumgart 394 days ago | link

Anybody else on Mac OS X unable to type a colon in the interactive prompt?

I tried it in both Firefox 3.5 and Safari 4, and neither works.

Apparently it's not just this site, though. According to http://www.cambiaresearch.com/c4/702b8cd1-e5b0-42e6-83ac-25f... it's only sending a shift (KeyCode 16) when I try typing a colon...

On my Ubuntu system, the colon works just fine. Is this a known bug?

-----

3 points by apgwoz 394 days ago | link

I wasn't able to type a colon either. I also wasn't able to type '+', '_', '<', '>', '|', '?', and '~'. These all have the common pattern of being shifted on a normal US keyboard, so I'm going to assume it's related to that.

-----

1 point by s3graham 394 days ago | link

Hmm, sorry about that, I only tried the demo console on Ubuntu and Windows, and only with a US keyboard.

I haven't found a non-insane way of doing it.. see f.e. http://www.quirksmode.org/js/keys.html

Anyone have any pointers? (or patches? :)

-----

1 point by adrinavarro 394 days ago | link

spanish qwerty keyboard layout here, works fine in safari 4 (osx), but I also use 'shift' to type colons, etc... maybe a fixed bug?

-----

1 point by Xixi 394 days ago | link

Doing the source-to-source translation on top of the javascript on the client side is quite neat.

I'd actually love to create a "GWT like" that would compile my python (in javascript/html/css) for the different browsers out there. That would be awesome.

GWT is nice and all, but python >> Java...

-----

3 points by s3graham 394 days ago | link

As snprbob86 pointed out, that already exists: Pyjamas @ pyjs.org.

I used pyjamas a while back for a couple toy projects. It's quite nice and sounds like what you're looking for.

With Skulpt, I wanted to avoid the build step that Pyjamas has (the compiler's written in Python, not Javascript so you run it ahead of time) and at least when I used it, it sometimes felt like Javascript with Python syntax, rather than actually programming in Python. It's certainly closer to Python than Skulpt is today though!

-----

4 points by ccheever 394 days ago | link

wow, that's super cool. i hope you keep working on it and making it more complete.

-----

1 point by Torn 394 days ago | link

In Opera 10 b2, the python shell never seems to grab focus correctly, so pressing space will scroll down the page way past it, making it very fiddly to use!

Along with hn user pmorici I'd like to find out what subset of Python this supports.

-----

2 points by s3graham 394 days ago | link

Hrm, sorry about Opera. I tested in a few browsers, but I confess my browser-dom-fu is weak.

From the look of it I'm telling MooTools to stop that event, but backspace doesn't seem to stop in Opera either. Maybe they don't want people disabling keyboard navigation maliciously?

edit: re: subset, my intention is for source-level 2.6 compatibility with the core language, but that's definitely far away.

-----

1 point by m_eiman 394 days ago | link

Very neat and all, but why not let the browser handle the input instead of emulating a US keyboard layout? Makes it hard to write stuff on non-US keyboards...

-----

1 point by wooby 394 days ago | link

Awesome - reminiscent of HotRuby, except cooler/faster/parses and executes all by itself. It would be nice if there was a JS Parrot VM.

-----

1 point by adrinavarro 394 days ago | link

   >>> from __future__ import braces
   don't have a handler for: import_stmt
Looks nice, still a lot to do.

-----

1 point by cool-RR 394 days ago | link

I can't even type = or +

-----

3 points by mahmud 394 days ago | link

Opera and Firefox hijack + for the zooming in functionality.

-----

1 point by kennethreitz 394 days ago | link

Amazing!! I love python and i love this :)

site looks down though..

-----




Lists | RSS | Search | Bookmarklet | Guidelines | FAQ | News News | Feature Requests | Y Combinator | Apply | Library

Analytics by Mixpanel