Using Dataiku
Sort by:
71 - 80 of
142
71 - 80 of
1428
Hi,
You'll want to compute a digest on the fly from the stream, as such:
import hashlib digest = hashlib.md5() with folder.get_download_stream("myfile") as stream: while True: block = stream.read(4096) if len(block) == 0: break digest.update(block) print(digest.hexdigest())
This website uses cookies. By clicking OK, you consent to the use of cookies. Read our cookie policy.
AcceptReject