Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrishwiggins/7518300e0d8649d8d791 to your computer and use it in GitHub Desktop.
Save chrishwiggins/7518300e0d8649d8d791 to your computer and use it in GitHub Desktop.
find . | grep '\.py' | grep -v -e '/venv/' -e '(' -e ')' | xargs -I % grep import % | sed -e 's/^[ ]*//' | grep -e '^from ' -e '^import ' | awk '{print $2}' | sed -e 's/^[\.]*//' | cut -d\. -f1 | tr '[A-Z]' '[a-z]' | sed -e 's/,$//' | sort -bfd | uniq -c | sort -nr | grep -n -e numpy -e scipy -e matplotlib -e ipython -e pandas -e sympy -e nose | tr ':' '\t'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment