MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / get

Method get

pymongo/common.py:1021–1022  ·  view source on GitHub ↗
(self, key: str, default: Optional[Any] = None)

Source from the content-addressed store, hash-verified

1019 return True
1020
1021 def get(self, key: str, default: Optional[Any] = None) -> Any:
1022 return self.__data.get(key.lower(), default)
1023
1024 def pop(self, key: str, *args: Any, **kwargs: Any) -> Any:
1025 lc_key = key.lower()

Callers 2

_esc_coll_nameFunction · 0.45
_ecoc_coll_nameFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected