NamedKeyMapping#
- class lsst.daf.butler.NamedKeyMapping#
Bases:
Mapping[K,V_co]Custom mapping class.
An abstract base class for custom mappings whose keys are objects with a
strnameattribute, for which lookups on the name as well as the object are permitted.Notes#
In addition to the new
namesproperty andbyNamemethod, this class simply redefines the type signature for__getitem__andgetthat would otherwise be inherited fromMapping. That is only relevant for static type checking; the actual Python runtime doesn’t care about types at all.Attributes Summary
Return the set of names associated with the keys, in the same order.
Methods Summary
byName()Return a
Mappingwith names as keys and theselfvalues.get()D.get(k[,d]) -> D[k] if k in D, else d.
keys()Attributes Documentation
- names#
Return the set of names associated with the keys, in the same order.
(
Set[str]).
Methods Documentation
- byName() dict[str, V_co]#
Return a
Mappingwith names as keys and theselfvalues.Returns#
- dictionary
dict A dictionary with the same values (and iteration order) as
self, withstrnames as keys. This is always a new object, not a view.
- dictionary
- get(key: object) V_co | None#
- get(key: object, default: V) V_co | V
D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.
- abstract keys() a set-like object providing a view on D's keys#