伊卡洛斯要好点的翅膀 世界探索家

python有参装饰器如何实现默认参数可调用

问题产生 现在我有一个装饰器,目的是可以延迟执行某个函数。 def delay(timeout: int = 1): def inner_func(func): def execute(*args, **kwargs): time.sleep(time

伊卡洛斯 发布于 2025-11-11

python的asyncio原理源码分析

事件循环是什么 本质上,asyncio.run就是使用事件循环去运行一段python函数。那么事件循环是什么呢? 个人简单的理解:在单个线程内,最大化利用cpu的时间, 循环执行任务组里面的任务。 举个栗子: 设无阻塞的任务为c(concurrent), 存在阻塞的任务为b(block) 假设存在某

伊卡洛斯 发布于 2025-11-11

Nginx-UI安装教程

开始 github地址 1. 安装Nginx-UI # 很重要!!!!!! # 导入github代理,不然下载速度非常慢 export GH_PROXY=https://ghproxy.cfd/ # nginx-ui安装 bash -c "$(curl -L https://cloud.nginx

伊卡洛斯 发布于 2025-11-11