Looks like I was over-wrapping the iterator. Dict() seems specialized.
This works
using ZipFile
z = ZipFile.Reader(archive_filepath)
z_by_name = Dict( f.name => f for f in z.files)
Looks like I was over-wrapping the iterator. Dict() seems specialized.
This works
using ZipFile
z = ZipFile.Reader(archive_filepath)
z_by_name = Dict( f.name => f for f in z.files)