Created
January 26, 2026 04:01
-
-
Save woodruffw/0a19d7e39ac94894a45fed88c851e90a to your computer and use it in GitHub Desktop.
Histogram of PyPI users for the top 500 most popular projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| top500=($(curl --silent 'https://hugovk.github.io/top-pypi-packages/top-pypi-packages.json' | jq -r '.rows[0:500] | .[].project')) | |
| for project in "${top500[@]}"; do | |
| url="https://pypi.org/project/${project}/" | |
| maintainers=($(curl --silent "${url}" | htmlq -t '.sidebar-section__user-gravatar-text' | sort | uniq)) | |
| for maintainer in "${maintainers[@]}"; do | |
| echo "${maintainer}" | |
| done | |
| done | sort | uniq -c | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment