Skip to main content

python/depanalysis: count the number of unique dependencies

ID
0c2119c
date
2026-05-26 22:05:34+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
0e55719
message
python/depanalysis: count the number of unique dependencies
changed files
1 file, 1 addition

Changed files

python/depanalysis (176) → python/depanalysis (273)

diff --git a/python/depanalysis b/python/depanalysis
index 545bf25..38cb44f 100755
--- a/python/depanalysis
+++ b/python/depanalysis
@@ -6,4 +6,5 @@ set -o nounset
 cd $(mktemp -d)
 get_all_venv_deps > venv.txt
 grep '==[0-9]' venv.txt | tr '==' ' ' | awk '{print $1}' | tally
+echo "=="$(grep '==[0-9]' venv.txt | tr '==' ' ' | awk '{print $1}' | tally | wc -l)" UNIQUE =="
 mate venv.txt