Make a Dictionary of files in ZipFile indexed by filename

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)