Last active
July 8, 2024 06:43
-
-
Save srathi-monarch/527a616127a77ae0665b30a47c8fb2a1 to your computer and use it in GitHub Desktop.
List python imports
This file contains 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/sh | |
{ grep -Poh '(?<=^import )[^.][A-Za-z_.]*' . -r ; grep -Poh '(?<=^from )[^.].*(?=import)' . -r ; } | cut -d '.' -f 1 | tr -d ' ' | sort | uniq | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment