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
- 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)
self.ui.setValidatorResolver(lambda name: {"not_empty": lambda val: bool(val.strip())}.get(name))
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()
Components
Mimir
Manages UI views, tooltips, validation, field rendering, and form logic.
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, etc.
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.2.11.tar.gz.
File metadata
- Download URL: jabs_mimir-0.2.11.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48f24fed7f1e7dd3d5a40fb03c3113c71f83d73a0277a474010727296a22ee46
|
|
| MD5 |
e11dd056aa4d8b7bac233d0aeac6aa90
|
|
| BLAKE2b-256 |
e52ffef8cdc4cf8c22c8bcfdbd287a048c005d12b76bbbe8cb208d0e6cf6485c
|
File details
Details for the file jabs_mimir-0.2.11-py3-none-any.whl.
File metadata
- Download URL: jabs_mimir-0.2.11-py3-none-any.whl
- Upload date:
- Size: 7.5 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 |
3e3411ebc557dc27b232bdb3df0abe295489fd1bd4dce07256cf1bba5a0a457e
|
|
| MD5 |
ada05d1be1962294ab76ab2d6456d3fc
|
|
| BLAKE2b-256 |
1bf919423ea631c306c856222e25988d27d6c44b179d29c979cfbc629fa4dd17
|