AccessorRegistration#
- namedtuple AccessorRegistration(name: str, target: type, accessor: type, source: str)[source]#
Describe one registered dataset accessor.
Returned by
registered_accessors().Added in version 0.48.0.
- Attributes:
- name
str The namespace the accessor is attached under (e.g.
'meshfix').- target
type The PyVista dataset class (or base class) the accessor is registered against.
- accessor
type The accessor class itself.
- source
str Human-readable origin in the form
'module.qualname'— useful for debugging which plugin registered a given accessor.
- name