Total packages in PyPI: {{ "{:,}".format(total_len) }}
|
Number of authors: {{ "{:,}".format(authors_len) }}
|
Packages Supporting Python 3: {{ "{:,}".format(len_py3) }} ({{ "{:.2f}".format(len_py3 / total_len * 100) }}%)
|
SCM Distribution
{% for scm_name, scm_count in scm %}
{{ scm_name }} |
{{ "{:,}".format(scm_count) }} ({{ "{:.2f}".format(scm_count / total_len * 100) }}%) |
{% endfor %}
|
Packages with no releases: {{ "{:,}".format(no_releases) }}
|
Packages with releases but no distributions (0 downloads): {{ "{:,}".format(no_downloads) }}
|
Packages with no source distribution: {{ "{:,}".format(no_sdist) }}
|
Packages with no dependency data: {{ "{:,}".format((total_len - dependency_data)) }} ({{ "{:.2f}".format((total_len - dependency_data) / total_len * 100) }}%)
|
Packages with SCM data: {{ "{:,}".format(len_scm) }} ({{ "{:.2f}".format(len_scm / total_len * 100) }}%)
|