Is your feature request related to a problem? Please describe.
As a Thoth user, I would like to know whether a package that I am using is trusted by RPM packagers (e.g. by Fedora community). In such a case, I can be more sure about the package.
Describe the solution you'd like
For each distribution, we can obtain a list of Python packages packaged as RPM using dnf repoquery --whatrequires "python(abi)"
For each RPM package, we can obtain information about Python package name on PyPI using dnf repoquery --provides <rpm-package>, PyPI package name can be seen in python3dist(<pypi-projectname>)
Acceptance Criteria
Thanks to torsava for pointers.
Is your feature request related to a problem? Please describe.
As a Thoth user, I would like to know whether a package that I am using is trusted by RPM packagers (e.g. by Fedora community). In such a case, I can be more sure about the package.
Describe the solution you'd like
For each distribution, we can obtain a list of Python packages packaged as RPM using
dnf repoquery --whatrequires "python(abi)"For each RPM package, we can obtain information about Python package name on PyPI using
dnf repoquery --provides <rpm-package>, PyPI package name can be seen inpython3dist(<pypi-projectname>)Acceptance Criteria
Thanks to torsava for pointers.