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

Method __init__

couchbase/options.py:1072–1083  ·  view source on GitHub ↗
(
        self,
        timeout=None,  # type: timedelta
        parent_span=None,  # type: Optional[RequestSpan]
        expiry=None,  # type: timedelta
        preserve_expiry=False,  # type: bool
        durability=None,  # type: DurabilityType
        transcoder=None,  # type: Transcoder
        per_key_options=None,       # type: Dict[str, UpsertOptions]
        return_exceptions=None      # type: Optional[bool]
    )

Source from the content-addressed store, hash-verified

1070 """ # noqa: E501
1071 @overload
1072 def __init__(
1073 self,
1074 timeout=None, # type: timedelta
1075 parent_span=None, # type: Optional[RequestSpan]
1076 expiry=None, # type: timedelta
1077 preserve_expiry=False, # type: bool
1078 durability=None, # type: DurabilityType
1079 transcoder=None, # type: Transcoder
1080 per_key_options=None, # type: Dict[str, UpsertOptions]
1081 return_exceptions=None # type: Optional[bool]
1082 ):
1083 pass
1084
1085 def __init__(self, **kwargs):
1086 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