This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Minimal proof of concept for database content display with Qt | |
Dataset available at: https://github.com/lerocha/chinook-database | |
""" | |
import sys | |
from qtpy import QtWidgets, QtSql | |
from qtpy.QtCore import Qt | |
if __name__ == "__main__": |