MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / __init__

Method __init__

couchbase/options.py:996–1006  ·  view source on GitHub ↗
(
        self,
        timeout=None,  # type: timedelta
        parent_span=None,  # type: Optional[RequestSpan]
        with_expiry=None,  # type: bool
        project=None,  # type: Iterable[str]
        transcoder=None,  # type: Transcoder
        per_key_options=None,       # type: Dict[str, GetOptions]
        return_exceptions=None      # type: Optional[bool]
    )

Source from the content-addressed store, hash-verified

994 """ # noqa: E501
995 @overload
996 def __init__(
997 self,
998 timeout=None, # type: timedelta
999 parent_span=None, # type: Optional[RequestSpan]
1000 with_expiry=None, # type: bool
1001 project=None, # type: Iterable[str]
1002 transcoder=None, # type: Transcoder
1003 per_key_options=None, # type: Dict[str, GetOptions]
1004 return_exceptions=None # type: Optional[bool]
1005 ):
1006 pass
1007
1008 def __init__(self, **kwargs):
1009 kwargs = {k: v for k, v in kwargs.items() if v is not None}

Callers

nothing calls this directly

Calls 2

itemsMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected