MCPcopy Create free account
hub / github.com/numpy/numpy / compute_md5

Function compute_md5

pavement.py:142–151  ·  view source on GitHub ↗

Compute md5 hash of files in idirs. Parameters ---------- idirs : directory path Directory containing files to be hashed.

(idirs)

Source from the content-addressed store, hash-verified

140
141
142def compute_md5(idirs):
143 """Compute md5 hash of files in idirs.
144
145 Parameters
146 ----------
147 idirs : directory path
148 Directory containing files to be hashed.
149
150 """
151 return _compute_hash(idirs, hashlib.md5)
152
153
154def compute_sha256(idirs):

Callers 1

write_release_taskFunction · 0.85

Calls 1

_compute_hashFunction · 0.85

Tested by

no test coverage detected