{% extends "base.html" %} {% block title %}{% if active_format %}{{ active_format }} SBOMs for PyPI Packages{% else %}PyPI Packages with SBOMs{% endif %} — pypi-tea{% endblock %} {% block meta %} {% endblock %} {% block content %}

{% if active_format %}{{ active_format }} SBOMs{% else %}Packages with SBOMs{% endif %}

{{ total }} package{{ 's' if total != 1 else '' }} found

{% if packages %}
{% for pkg in packages %} {% endfor %}
Package Version SBOM Formats
{{ pkg.name }} {{ pkg.version }}
{% for fmt in pkg.formats %} {{ fmt }} {% endfor %}
View SBOM →
{% if total_pages > 1 %} {% endif %} {% else %}

No packages found{% if active_format %} with {{ active_format }} SBOMs{% endif %}.

Packages appear here once they've been queried through the TEA API.

{% endif %}
{% endblock %}