Decompile .pyc files in a directory and any sub-directores
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
pip install uncompyle6 | |
find . -name "*.pyc" -exec bash -c 'uncompyle6 $1 > $1.py' _ {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment