python-import-analyzer Analyzes a python project and produces a count of all the root imports used. eg: import os import re import re from datetime import date Will return os, 1 re, 2 datetime, 1