How do I list the files inside a python wheel?
问题 I'm poking around the various options to setup.py for including non-python files, and they're somewhat less than intuitive. I'd like to be able to check the package generated by bdist_wheel to see what's actually in it--not so much to make sure that it will work (that's what tests are for) but to see the effects of the options I've set. How do I list the files contained in a .whl ? 回答1: You can take the wheel file change the extension to .zip and then extract the contents like any other zip