Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/s2_sdk/_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ async def ensure_basin(
response.json(), response.headers
)

@fallible
def basin(self, name: str) -> "S2Basin":
"""Get an :class:`S2Basin` for performing basin-level operations.

Expand Down Expand Up @@ -758,6 +759,7 @@ async def ensure_stream(
response.json(), response.headers
)

@fallible
def stream(
self,
name: str,
Expand Down Expand Up @@ -1021,6 +1023,7 @@ async def append(self, inp: types.AppendInput) -> types.AppendAck:
ack.ParseFromString(response.content)
return append_ack_from_proto(ack)

@fallible
def append_session(
self,
*,
Expand Down Expand Up @@ -1062,6 +1065,7 @@ def append_session(
encryption_key=self._encryption_key,
)

@fallible
def producer(
self,
*,
Expand Down
Loading