Answers for "delete pycache files"

4

delete pycache files

find . | grep -E "(__pycache__|.pyc|.pyo$)" | xargs rm -rf
Posted by: Guest on June-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language