in de/estimate.py [0:0]
def estimate_de(paths):
string_paths = list(map(str, paths))
total_bytes, chunk_bytes, compressed_chunk_bytes = estimate(string_paths)
return {
"total_len": total_bytes,
"chunk_bytes": chunk_bytes,
"compressed_chunk_bytes": compressed_chunk_bytes,
}