Play SWF cross platform with Python?

I am looking for various solutions for playing SWF files on Windows, OSX and Linux using Python. Ideally, I would like to embed the player in a wxPython frame / window.

One of the features I'm exploring is the Mozilla XPCOM framework since it used FireFox to load the Flash plugin in a browser.

+3
source share
2 answers

, wxPython, ( -, Python 2.5 ):

import webbrowser
webbrowser.open(your_swf_url)

.

+2

All Articles