PyQt Custom Frameless Main Window (Enable to move and resize)

PyQt Custom Frameless Main Window (Enable to move and resize) Requirements PyQt5 >= 5.8 Setup pip3 install git+https://github.com/yjg30737/pyqt-custom-frameless-mainwindow.git –upgrade Example Code Sample from PyQt5.QtWidgets import QApplication from pyqt_custom_frameless_mainwindow import CustomFramelessMainWindow if __name__ == “__main__”: import sys app = QApplication(sys.argv) example = CustomFramelessMainWindow() example.show() app.exec_() GitHub View Github    

Read more

Cricket game using PYQT

This is a Fantasy cricket Desktop application build in python that allows user to build their own dream cricket team , analyse it and play !!!….Isn’t it exciting….. Table of Contents You’re sections headers will be used to reference location of destination. Description Fanatsy cricket is build in python using Pyqt5 library specifically QtCore QtGui QtWidgets for GUI development and SqliteStudio for Back end database connectivity. Use of Badges Features Create your own dream team in Auction Save your team […]

Read more