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

Method __init__

gridfs/asynchronous/grid_file.py:1923–1926  ·  view source on GitHub ↗
(
        self, grid_out: AsyncGridOut, chunks: AsyncCollection[Any], session: AsyncClientSession
    )

Source from the content-addressed store, hash-verified

1921
1922class AsyncGridOutIterator:
1923 def __init__(
1924 self, grid_out: AsyncGridOut, chunks: AsyncCollection[Any], session: AsyncClientSession
1925 ):
1926 self._chunk_iter = _AsyncGridOutChunkIterator(grid_out, chunks, session, 0)
1927
1928 def __aiter__(self) -> AsyncGridOutIterator:
1929 return self

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected