So I’m thinking of making a data visualizer with multiple tabs – my first task being to make correlations between all the variables (one tab).
I was thinking of doing this in wxPython and doing the calculations in Numpy/Scipy.
My question is, do you think it would be faster/utilize less resources to do this using Qt and C++? I would prefer to go with Numpy since it has significant optimizations that typically? make it better than naive C code.
Would it be possible to make the front end in Qt and write the backend in Python – if so, how?
I know exactly what you need!
You should check out PySide.
From the website: “The PySide project provides LGPL-licensed Python bindings for the Qt cross-platform application and UI framework. PySide Qt bindings allow both free open source and proprietary software development and ultimately aim to support all of the platforms as Qt itself.“
For tutorials on PySide, you can checkout the PySide Documentation or the ZetCode tutorials on PySide.