Real-life data for object-centric processing mining
View the project on GitHub LienBosmans/pystackt
Watch the demo on Youtube PyStack't Demo BPM 2025
When working with PyStack’t, event data is stored in a DuckDB file (e.g. stackt.duckdb
) using the Stack’t relational schema.
If you want to inspect the contents of such a file — for example to check tables, run queries, or verify data extraction — you have a few options.
From DuckDB version 1.2.1 onwards, a UI extension is included. You can launch th extension by running below Python code.
import duckdb
with duckdb.connect("./stackt.duckdb") as quack:
quack.sql("CALL start_ui()")
input("Press Enter to close the connection...")
This opens a web UI at http://localhost:4213 where you can browse tables and run SQL queries interactively. Press Enter in your terminal to stop the session when you’re done.
Follow this DuckDB guide to download and install DBeaver and use it to connect to your DuckDB file.