retry_decorator.py
Python•マスター
Explorer
C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python
初級10
中級10
上級10
エキスパート5
マスター5
async_pool.py
retry_decorator.py
singleton_meta.py
context_manager.py
dataclass_config.py
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
retry_decorator.py
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
def retry(times: int = 3):↵
def decorator(func):↵
@functools.wraps(func)↵
async def wrapper(*args, **kwargs):↵
for i in range(times):↵
try:↵
return await func(*args, **kwargs)↵
except Exception:↵
if i == times - 1: raise↵
await asyncio.sleep(1)↵
return wrapper↵
return decorator
0WPM•0%•0:00•0/392(0%)|Ln 1, Col 1
UTF-8•Python