omero-browser-qt

Reusable PyQt6 dialog for browsing and retrieving images from OMERO servers.

Browser dialog

Features

30-second example

from PyQt6.QtWidgets import QApplication
from omero_browser_qt import OmeroGateway, OmeroBrowserDialog

app = QApplication([])
gw = OmeroGateway()

for img in OmeroBrowserDialog.select_images(gateway=gw):
    print(img.getName(), img.getId())

gw.disconnect()

Installation

pip install omero-browser-qt

!!! note “ZeroC ICE required” omero-py depends on ZeroC ICE, which must be installed separately. See Getting Started for detailed instructions.

What’s next?

Section Description
Getting Started Prerequisites, install, first workflow
User Guide In-depth usage of every component
API Reference Auto-generated from docstrings
Examples Recipes and the OMERO Viewer