A reusable tkinter/ttkbootstrap UI framework
Project description
Jabs Mimir
Jabs Mimir is a lightweight, extensible UI micro-framework built on top of tkinter and ttkbootstrap, designed for rapid internal tool development and structured form workflows.
It provides:
- Reusable UI primitives with validation and tooltips
- Support for block-based form components with dynamic variable binding
- Integration with custom validation logic (via resolver, file loader, or direct function)
- Modular architecture suitable for internal tooling and small boilerplate projects
Installation
pip install jabs-mimir
Quick Start
from jabs_mimir import Mimir, DataBlockWrapper, UtilityModule
import tkinter as tk
import ttkbootstrap as tb
class App(tb.Window):
def __init__(self):
super().__init__(title="Mimir Demo")
self.ui = Mimir(self)
# Option 1: Inline validator resolver (string-based)
self.ui.setValidatorResolver(lambda name: {
"not_empty": lambda val: bool(str(val).strip())
}.get(name))
# Option 2 (alternative): load from file
# self.ui.setValidatorFile("include/validator.py")
self.ui.switchView(self.mainView)
def mainView(self, ui, *args):
frame = tb.Frame(self)
fields = [
{"type": "heading", "label": "Basic Info"},
{"label": "Name", "key": "name", "variable": tk.StringVar(), "validation": "not_empty"},
{"label": "Age", "key": "age", "variable": tk.IntVar()}
]
meta = UtilityModule.buildBlockMeta(fields)
block = DataBlockWrapper(meta)
ui.renderFields(frame, fields)
ui.addNextButton(frame, row=len(fields)+1, command=lambda: print(UtilityModule.getBlockValues(block)))
return frame
if __name__ == "__main__":
app = App()
app.mainloop()
Validation
Jabs Mimir supports both automatic and manual validation, triggered on field focus-out and verified again when clicking "Nästa".
You can define validation in two ways:
1. String-based validation (via file or resolver)
Define a validator in a file:
# include/validator.py
def not_empty(value):
return bool(str(value).strip())
Load it:
self.ui.setValidatorFile("include/validator.py")
Use string key in field:
{"label": "Name", "variable": tk.StringVar(), "validation": "not_empty"}
2. Direct function reference
from include.validator import not_empty
fields = [
{"label": "Name", "variable": tk.StringVar(), "validation": not_empty}
]
✅ Both methods are fully supported and interchangeable.
Mimir automatically:
- Binds validation on focus-out
- Stores all validators internally
- Re-validates all fields when clicking "Nästa"
- Blocks navigation if any invalid inputs remain
- Highlights invalid fields with red styling
Works even for readonly fields (like file upload paths), which normally can't be focused.
Components
Mimir
Manages UI views, tooltips, validation, field rendering, and form logic.
Supports reusable custom field types via registerFieldType().
DataBlockWrapper
A wrapper for block-level form metadata and values. Supports dot-access and .get()/.set() calls.
UtilityModule
Helper methods for building field metadata, extracting values, validating blocks, and block meta handling.
License
MIT License © 2025 William Lydahl
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jabs_mimir-0.5.0.tar.gz.
File metadata
- Download URL: jabs_mimir-0.5.0.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aff926b0d76fdcd5d2d04a7e3c1683dd42908ffc75713dbfa9d56383923a33a1
|
|
| MD5 |
240b99db8a2dfbb76c819917149717cd
|
|
| BLAKE2b-256 |
7183b3da176c3c41458afda83fffaa0cb2ad0bc324b2d7ca118e528bbfc2d7e5
|
File details
Details for the file jabs_mimir-0.5.0-py3-none-any.whl.
File metadata
- Download URL: jabs_mimir-0.5.0-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1a7fc157cca3527de8123da840466d54a8ebd4daaa7337ddc3c4eb85d041f8b
|
|
| MD5 |
f33cb1527e0aa65a3be1853afe69f99e
|
|
| BLAKE2b-256 |
c3fb89ede765aabb82da0ac6ca953f08eac5e103ea57808a067d639c4b385290
|