May 2019
Intermediate to advanced
542 pages
13h 37m
English
Our coffee database has three tables: a list of coffee products, a list of roasts, and a table of reviews for the products. Our GUI will be designed as follows:
Let's start by copying your basic PyQt application template from Chapter 4, Building Applications with QMainWindow to a file called coffee_list1.py. Then, add an import for QtSQL like so:
from PyQt5 import QtSql as qts
Now we're going to create a form to display information ...
Read now
Unlock full access