A speech therapy app for managing patient records. Early WIP (v0.0.2).
Desktop app to:
- Add/edit/delete kids in a database
- Store notes and examination data
- Polish & English support (auto-detected)
- Everything stored locally in SQLite
- Patient CRUD (add, view, edit notes, delete)
- Basic UI with navigation
- Language toggle
- Medical-ish theme
- Examination forms
- Reports/export (PDF?)
- Better UI polish
- Idk, we'll see
python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
pip install PySide6 SQLAlchemy
python run.py├── run.py # start here
├── main.py # alt launcher
├── database.py # db models
└── UI/
├── UI.py # main window
└── style.py # styling
- Database is local, not in Git
- Uses PySide6 + SQLite + SQLAlchemy
- Docs are in DOCUMENTATION
Early version. Made for learning. Might break things 🤷