-
Hi! I'm trying to save an image, but how can I save the tarball to a specific path? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
dinisinho
Mar 16, 2022
Replies: 1 comment
-
jhonce helps me on Discord: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dinisinho
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jhonce helps me on Discord:
image.save() returns an Iterator[bytes]
Example: for block in image.save(): file.write(block)...