I have installed ANACONDA 5.0.0, in Win10, Python 3.6.2, by default Anaconda brings PyQT5 but when executing a program that tries to connect with postgresql9.5 it tells me the driver has not been found.
I am trying to apply one of my first applications in Qt5 with Python 3.5.2:
import sys
from PyQt5 import QtWidgets
def window():
app = QtWidgets.QApplication(sys.argv)
w = QtWidgets.Qwidget()
w.show()
sys.exit(app.exec_())
wi...
I've been trying to integrate the effect "press" to the buttons or widgets that allow it but I have not been able to do it
I started creating environments with HTML and behind python to apply all the necessary effects
I understand that the...
I have the main file and my own function that I want to add. And he sends me the following error. The function path is fine and the function in the main file does work.
self.lbl = QLabel(self)
TypeError: arguments did not match any overloaded...