MCPcopy Index your code
hub / github.com/plotly/plotly.py / chunks

Method chunks

_plotly_utils/png.py:1405–1414  ·  view source on GitHub ↗

Return an iterator that will yield each chunk as a (*chunktype*, *content*) pair.

(self)

Source from the content-addressed store, hash-verified

1403 return type, data
1404
1405 def chunks(self):
1406 """Return an iterator that will yield each chunk as a
1407 (*chunktype*, *content*) pair.
1408 """
1409
1410 while True:
1411 t, v = self.chunk()
1412 yield t, v
1413 if t == b"IEND":
1414 break
1415
1416 def undo_filter(self, filter_type, scanline, previous):
1417 """

Callers

nothing calls this directly

Calls 1

chunkMethod · 0.95

Tested by

no test coverage detected