Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d751f63
feat: support for async bidi streaming apis
chandra-siri Aug 14, 2025
fdcd903
fix linting
chandra-siri Aug 14, 2025
5835178
Add bidiBase, refactor bidiRpc and add AsyncBidi
chandra-siri Aug 27, 2025
df8fba5
remove changes from noxfile
chandra-siri Aug 29, 2025
19cf273
use queue.get() instead of queue.get_nowait()
chandra-siri Aug 30, 2025
5b6d287
use asyncio.wait_for instead of asyncio.timeout
chandra-siri Aug 30, 2025
2599f96
aiter() and anext() are not defined in python<=3.9
chandra-siri Aug 30, 2025
9c1a621
remove support for python 3.7 and below
chandra-siri Aug 30, 2025
cc19089
fix mypy errors
chandra-siri Aug 30, 2025
a86a9b1
fix typo, version -> version_info
chandra-siri Aug 30, 2025
5464dc5
AsyncMock not present in python3.7
chandra-siri Aug 30, 2025
e96a409
update doc strings
chandra-siri Aug 30, 2025
52686b8
use pytest.approx to round of floating point errors.
chandra-siri Sep 1, 2025
d01421b
add tolerance
chandra-siri Sep 1, 2025
98eae06
add test_open_error_call_error unit test
chandra-siri Sep 1, 2025
af2121c
Merge branch 'main' of https://github.com/googleapis/python-api-core …
chandra-siri Sep 8, 2025
5a7550f
minor changes based on PR comments
chandra-siri Sep 8, 2025
c486c49
formatting fixes
chandra-siri Sep 8, 2025
14342b1
remove changes from test_method.py
chandra-siri Sep 8, 2025
6fabb1f
fix typos in doc string and error msg
chandra-siri Sep 17, 2025
2df8cc4
minor fixes in comments & doc strings
chandra-siri Sep 18, 2025
b963922
address review comments. mostly fix doc-strings
chandra-siri Oct 1, 2025
470aeb4
Merge branch 'main' of https://github.com/googleapis/python-api-core …
chandra-siri Oct 1, 2025
7475d99
remove unused variable to fix lint
chandra-siri Oct 1, 2025
8bf8396
fix & imporove docstrings & comments. Reduce test timeout duration
chandra-siri Oct 8, 2025
827d3c1
write floating point numbers are per pylint
chandra-siri Oct 8, 2025
69f061b
correct exception type in _async files
chandra-siri Oct 9, 2025
d528dd0
move comments from class level to method level
chandra-siri Oct 9, 2025
4ee9826
add .close() in Example code
chandra-siri Oct 9, 2025
5f3e5ba
throw better error msg when stream is not opened
chandra-siri Oct 9, 2025
82cea4f
Merge branch 'main' into feat/834-bidi-async-support
chandra-siri Oct 11, 2025
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
Prev Previous commit
Next Next commit
add .close() in Example code
  • Loading branch information
chandra-siri committed Oct 9, 2025
commit 4ee982654014107cc844d8745d4484ef7a8777ab
2 changes: 2 additions & 0 deletions google/api_core/bidi.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ class BidiRpc(BidiRpcBase):
rpc.send(example_pb2.StreamingRpcRequest(
data='example'))

rpc.close()

This does *not* retry the stream on errors. See :class:`ResumableBidiRpc`.

Args:
Expand Down
Loading