Skip to main content

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 or direct functions)
  • 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()

Validation

You can validate fields in two ways:

1. Using a validator file

Create a validator.py:

# include/validator.py
def not_empty(val):
    return bool(str(val).strip())

Load it in your app:

self.ui.setValidatorFile("include/validator.py")

And use string keys in fields:

{"label": "Name", "key": "name", "variable": tk.StringVar(), "validation": "not_empty"}

2. Using a direct function reference

Import the function and assign it directly:

from include.validator import not_empty

fields = [
    {"label": "Name", "key": "name", "variable": tk.StringVar(), "validation": not_empty}
]

Both styles are supported, and Mimir automatically handles focus-out validation, red border styling, and prevents advancement if any fields are invalid.


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

jabs_mimir-0.4.8.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jabs_mimir-0.4.8-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file jabs_mimir-0.4.8.tar.gz.

File metadata

  • Download URL: jabs_mimir-0.4.8.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for jabs_mimir-0.4.8.tar.gz
Algorithm Hash digest
SHA256 d09bcdcc34f57820f6c59a274cfeeb850cab74f49080a81ebb6ebe9120a141b2
MD5 a153f9079aeb959610b04b26ed86c3d0
BLAKE2b-256 90c98b4a7254af97d9614eff57ff905743cb080394295b7422fbfdf0def4c3ae

See more details on using hashes here.

File details

Details for the file jabs_mimir-0.4.8-py3-none-any.whl.

File metadata

  • Download URL: jabs_mimir-0.4.8-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for jabs_mimir-0.4.8-py3-none-any.whl
Algorithm Hash digest
SHA256 ebd52d0e8b37b40655308d5a9435bc2305226c9f23e6313c6420f0d3f004e589
MD5 688b26d5a7366126a5f65934ad024c4d
BLAKE2b-256 17618fb8c7cc59002dcf476c781526ff89c57f4ac39509e1af6349580ae0d2aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page