Open
Description
From #1317: When client downloads files it does not always need them written into an actual file, often it just wants the content: providing API the returns just bytes would be fine. We should still cache the target to disk but client could avoid reading the file if we provided variants of download_target()
and find_cached_target()
that returned bytes.
the only complication here might be that we really might want to provide an iterator[bytes]
(because there could be a lot of bytes)... If that is possible that would be cool but that might be more complicated