This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jaraco
Recipients christian.steinmeyer, jack__d, jaraco, xtreak
Date 2021-07-16.00:40:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626396057.9.0.898159209445.issue44638@roundup.psfhosted.org>
In-reply-to
Content
Even simpler:

```
import zipfile


zip_file = zipfile.ZipFile('zipfile.zip')
names = [each.name for each in zipfile.Path(zip_file).iterdir()]
zip_file.open(names[0])
```
History
Date User Action Args
2021-07-16 00:40:57jaracosetrecipients: + jaraco, xtreak, jack__d, christian.steinmeyer
2021-07-16 00:40:57jaracosetmessageid: <1626396057.9.0.898159209445.issue44638@roundup.psfhosted.org>
2021-07-16 00:40:57jaracolinkissue44638 messages
2021-07-16 00:40:57jaracocreate