PySide Signal argument can't be retrieved from QML
I've noticed that QML can receive a signal emitted from Python by using the Connections object. Unfortunately, I can't figure out how to get that object to receive the arguments of that signal. I've created a minimal test case that demonstrates what I want to do: min.py from PySide import QtCore, QtGui, QtDeclarative import sys # init Qt app = QtGui.QApplication(sys.argv) # set up the signal class Signaller(QtCore.QObject): emitted = QtCore.Signal(str) signaller = Signaller() # Load the QML qt_view = QtDeclarative.QDeclarativeView() context = qt_view.rootContext() context.setContextProperty(