views:

91

answers:

2

I guess that title is self-explanatory. Is there any such effort been made?

Some more info:

it's client application (gui intensive)

By porting I was thinking of cross-compiling.

+2  A: 

i havent done this but it shouldnt be to difficult to port python o silverlight because you should be able to use IronPython and add clr references to your python code to start using the silverlight assemblies.

AutomatedTester
+2  A: 

Between the two, porting to Silverlight is going to be much easier. You can target IronPython and focus primarily on changing/replacing the libraries that you've used in your Python app that aren't available in IronPython.

"Porting" to Flash would be more reasonably written as "rewriting a Python application in ActionScript." Which, of course, would be easier than a from-scratch implementation, but would be largely a new effort.

Travis Bradshaw