11 2023 档案
摘要:#!/usr/bin/env python # -*- coding:utf-8 -*- # datetime:2023/11/17 """ 一个第三方 DeepL 翻译的免费、不限量 API. DeepLX 是一个开源项目,它基于 DeepL 免费服务, 将其转换为本地 API,提供给第三次程序使
阅读全文
摘要:@retry:重试执行 @retry装饰器帮助我在遇到异常时重试函数执行,确保更大的弹性: import time def retry(max_attempts, delay): def decorator(func): def wrapper(*args, **kwargs): attempts
阅读全文