MCPcopy
hub / github.com/explosion/spaCy / get

Method get

spacy/tokens/underscore.py:86–87  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

84 return self.__setattr__(name, value)
85
86 def get(self, name: str) -> Any:
87 return self.__getattr__(name)
88
89 def has(self, name: str) -> bool:
90 return name in self._extensions

Callers 15

pos_lookup_lemmatizeMethod · 0.45
lemmatize_detMethod · 0.45
lemmatize_pronMethod · 0.45
lemmatize_adpMethod · 0.45
lemmatize_adjMethod · 0.45
lemmatize_nounMethod · 0.45
is_base_formMethod · 0.45
norm_customFunction · 0.45
lookup_lemmatizeMethod · 0.45
rule_lemmatizeMethod · 0.45
pos_lookup_lemmatizeMethod · 0.45
lemmatize_adjMethod · 0.45

Calls 1

__getattr__Method · 0.95