No I might be fine, the thing with python thats really allowing it to work well with flash is getting an understanding of the shell its self
Here is how I use the script logged in to linux as root, you are going to need to get the pyqt webkit modules as well they dont come with a clean python install:
PHP Code:
from PyQt5.QtCore import QUrl
from PyQt5.QtWidgets import QApplication
from PyQt5.QtWebKitWidgets import QWebView
from PyQt5.QtWebKit import QWebSettings
import sys
app = QApplication(sys.argv)
view = QWebView()
view.show()
view.setUrl(QUrl("file:///root/Desktop/test.swf"))
app.exec()