Skip to content

Instantly share code, notes, and snippets.

@aboellinger
aboellinger / pyside2-sqlite-minimal.py
Created December 15, 2021 11:33
Minimal Sqlite display w/ PySide2
"""
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__":