Kann man das irgentwie anders lösen, gibt es vielleicht einen xml2html übersetzer oder muss ich mir das selber zusammenzimmern?
Währe dankbar für ein paar tips.

Code: Alles auswählen
#!/usr/bin/env python
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
app = QApplication(sys.argv)
web = QWebView()
web.load(QUrl("http://site.com/rss.php"))
web.show()
sys.exit(app.exec_())