We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
chunk_size
1 parent e78e4e7 commit 74a293aCopy full SHA for 74a293a
docker/models/images.py
@@ -64,9 +64,9 @@ def save(self, chunk_size=DEFAULT_DATA_CHUNK_SIZE):
64
Get a tarball of an image. Similar to the ``docker save`` command.
65
66
Args:
67
- chunk_size (int): The number of bytes returned by each iteration
68
- of the generator. If ``None``, data will be streamed as it is
69
- received. Default: 2 MB
+ chunk_size (int): The generator will return up to that much data
+ per iteration, but may return less. If ``None``, data will be
+ streamed as it is received. Default: 2 MB
70
71
Returns:
72
(generator): A stream of raw archive data.
0 commit comments