Framework
Build a Desktop App with PySide6 #7: Packaging and Distribution — Building Executables with PyInstaller
Bundle the app with PyInstaller so it runs on computers without Python installed. The onedir vs onefile trade-off, including data files, platform-specific caveats, and pyside6-deploy — the final part of the series.
Build a Desktop App with PySide6 #6: Threads and Timers — Keeping the UI Responsive
See exactly why wiring a long task to a button freezes the whole window, then fix it with the QThread + Worker pattern — the canonical code that keeps the UI responsive. Also covers QTimer for periodic work.
Build a Desktop App with PySide6 #5: Model/View — Connecting Data to Lists and Tables
We hit the limits of stuffing data directly into widgets and move to Qt model/view. Subclassing QAbstractTableModel, change notification, a QSortFilterProxyModel search filter, and selection handling — all practiced on a todo table.
Build a Desktop App with PySide6 #4: Qt Designer and UI Files — Draw the Screen, Then Load It
Draw your screen with Qt Designer, which ships with PySide6, and load the .ui file in two ways: pyside6-uic and QUiLoader. We practice the code-and-screen separation workflow on the todo app form.
Build a Desktop App with PySide6 #3: Signals and Slots — the Core of Event Handling
A tour of signals and slots, the center of event handling in Qt. From clicked.connect through signals that carry arguments to custom signals declared with Signal, and wiring real behavior into the todo app.
Build a Desktop App with PySide6 #2: Widgets and Layouts — Assembling the Screen
A catalog of the widgets you will use most, and how to assemble a real screen by nesting QVBoxLayout and QHBoxLayout. We build the screen skeleton of the todo app we will extend throughout the series.
Build a Desktop App with PySide6 #1: What PySide6 Is — Desktop Apps with Qt and Python
A comparison of your options for building desktop apps in Python, and the case for PySide6, the official Qt bindings. We go from installation to showing your first window and understanding what the event loop means.
Wails in Practice #10 Finishing Touches — Settings, Dark Mode, Data Backup
The final post of the series. Features are all there, but we fill in the touches that make the app worth reopening. Covers a structure for saving and loading settings, dark mode that follows the system, remembering window state, backup/export/import that keeps user data safe, and a recap of the principles running through all ten posts.
Wails in Practice #9 Implementing Auto-Update — Delivering a New Version Safely
Actually implement the auto-update that #6 only discussed as strategy. Covers stamping a version into the app and querying the latest from GitHub Releases, a safe notify-style implementation, why fully automatic replacement is risky and what it must uphold, and a version flow that does not clash with signing and CI.
Wails in Practice #8 A Testing Strategy — Verifying the Service and Repository
Actually write the tests promised back in #1 when we split the layers. Covers unit tests that verify service logic in pure Go without Wails, integration tests that verify the repository with a temporary SQLite, sweeping edge cases with table-driven tests, and wiring these into #6's CI so they run automatically before a release.
Wails in Practice #7 The Note Editor for Real — Markdown Preview and List UX
The first post of Part 2. We actually build the front half of the notes app, backend-heavy so far. Covers a preview that renders markdown safely, debounced autosave that fires when typing stops, keeping edits from shuffling the list order, and a list UX you can move through with the keyboard.
Wails in Practice #6 CI/CD Automated Releases — Three-Platform Delivery with GitHub Actions
Close the series by making a single tag generate a three-platform release automatically. Covers why macOS cannot be cross-compiled and forces a matrix build, a GitHub Actions workflow that builds and signs on per-platform runners, where pure-Go SQLite keeps CI simple, an auto-update strategy, and a full recap of the six posts.