Remove PYC and PY~ files

Probuse Admin


find . -name "*.py~" -exec rm -rf {} \;

find . -name "*.pyc" -exec rm -rf {} \;

Use below command and go to the module or folder to remove it.