2025年9月24日

uv Python安装镜像加速

摘要: uv Python安装镜像源。 南京大学开源镜像站源地址:https://mirror.nju.edu.cn/github-release/astral-sh/python-build-standalone/ 兰州大学开源软件镜像站源地址:https://mirrors.lzu.edu.cn/git 阅读全文
posted @ 2025-09-24 10:16 GoldBadge 阅读(91) 评论(0) 推荐(0)
2025年9月11日

Wagtail Dockerfile 构建镜像加速

摘要: Wagtail 版本 7.0 LTS 使用wagtail start命令生成项目后,会在项目内有个Dockerfile文件。 内容如下: # Use an official Python runtime based on Debian 12 "bookworm" as a parent image. 阅读全文
posted @ 2025-09-11 20:51 GoldBadge 阅读(4) 评论(0) 推荐(0)

Python 装饰器(decorator)

摘要: def A(func): def B(*args, **kwargs): func(*args, **kwargs) return B 装饰器是一个函数,它有且只有一个参数用来接收被装饰的函数,它的返回值是另一个函数。 def A(func): def B(*args, **kwargs): fun 阅读全文
posted @ 2025-09-11 15:24 GoldBadge 阅读(1) 评论(0) 推荐(0)