1 Star 3 Fork 1

丌幂/简易Python中式日期时间库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
clean_update.py 577 Bytes
一键复制 编辑 原始数据 按行查看 历史
EillesWan 提交于 2024-04-30 21:37 . 恰。
import shutil
import os
from rich.console import Console
from rich.progress import track
console = Console()
def main():
with console.status("寻全档于 .egg-info 内"):
egg_info: list = []
for file in os.listdir():
if file.endswith(".egg-info"):
egg_info.append(file)
console.print(file)
for file in track(["build", "dist", "logs", *egg_info], description="正清档"):
if os.path.isdir(file) and os.access(file, os.W_OK):
shutil.rmtree(file)
if __name__ == "__main__":
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/EillesWan/zhDateTime.git
[email protected]:EillesWan/zhDateTime.git
EillesWan
zhDateTime
简易Python中式日期时间库
master

搜索帮助