Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Created September 22, 2022 04:12
Embed
What would you like to do?
Decompile .pyc files in a directory and any sub-directores
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