10 Star 74 Fork 23

DealiAxy/DjangoStarter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clean_pycache.py 709 Bytes
一键复制 编辑 原始数据 按行查看 历史
import os
import shutil
current_path = os.path.abspath('.')
exclude_path = [
os.path.join(current_path, '.idea'),
os.path.join(current_path, '.git'),
os.path.join(current_path, 'venv'),
]
def is_exclude(path: str):
for item in exclude_path:
if path.startswith(item):
return True
return False
def run():
for root, dirs, files in os.walk(current_path):
root: str
if is_exclude(root):
continue
for item in dirs:
dir_path = os.path.join(root, item)
if item == '__pycache__':
print(f'delete: {dir_path}')
shutil.rmtree(dir_path)
if __name__ == '__main__':
run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/deali/DjangoStarter.git
git@gitee.com:deali/DjangoStarter.git
deali
DjangoStarter
DjangoStarter
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385