TIL zip files can contain comments
... and the standard UNIX tool zipinfo cannot display them ! So here is Python one-liner to extract them, and other useful meta informations: python -c "import json, sys, zipfile; json.dump([{k: str(getattr(i, k)) for k in zipfile.ZipInfo.__slots__} for i in zipfile.ZipFile(sys.argv[1]).infolist …
Read More