Skip to content

medcat.plugins

Modules:

  • catalog

    Management of the curated plugin catalog.

  • cli

    CLI entrypoint for MedCAT commands.

  • data

    Packaged resources for MedCAT plugins (e.g. curated plugin catalog).

  • downloadable

    Protocol definitions for plugin installation backends.

  • installer

    Plugin installation functionality.

  • loader
  • registry

Functions:

load_plugins

load_plugins()
Source code in medcat-v2/medcat/plugins/loader.py
83
84
85
86
def load_plugins():
    eps = entry_points(group=ENTRY_POINT_PATH)
    for ep in eps:
        _load_plugin(ep)