Download a wheel file from the Python Package Index
Given a wheel filename, download it from a package index, writing the file contents to stdout.
LIMITATION: Generating the list of wheel files to download is non-obvious at this point; soon there will be an ocibuild python SOMETHING command that will spit out a list of wheel filenames, but it doesn't exist yet. I'm not sure if you can get pip to give it to you. pip-compile only gives you (name, version) tuples, not the full (name, version, platform) tuple.
LIMITATION: While checksums are verified, GPG signatures are not.
ocibuild python getwheel [flags] NAME_VERSION_PLATFORM.whl >NAME_VERSION_PLATFORM.whl
-h, --help help for getwheel
--index-server string Index server to download the wheel from (default "https://pypi.org/simple/")
- ocibuild python - Interact with Python without the target environment