Source code for ezmsg.tools.perfmon

"""Performance monitor: a Dash app over ezmsg's profiler output.

The console script points here rather than at :mod:`.cli` so that a missing
``perfmon`` extra produces an explanation instead of a traceback -- see
:mod:`ezmsg.tools._entry`.
"""

from .._entry import run_cli


[docs] def main() -> None: run_cli("ezmsg.tools.perfmon.cli", "perfmon")