We are maintaining a private PyPi repository on a GitLab instance in which we upload hundreds of Python wheels for different platforms, architectures and Python versions in order to use them internally.
As the amount of packages grows, we only want to upload packages that do not already exist in the repository and thus, want to to check what's already available in advance. We have looked into pip search
but it only seems to work for single packages.
Is there any way to check for all available packages on a package repository including their versions, architectures, etc.?
I was hoping for something like pip list
but for the repository.