Skip to content

Instantly share code, notes, and snippets.

@ChiaZou
ChiaZou / mwt.py
Created October 20, 2021 08:07 — forked from jh0ker/mwt.py
Memoize-with-timeout decorator
#!/usr/bin/env python
# Source: http://code.activestate.com/recipes/325905-memoize-decorator-with-timeout/#c1
import time
from functools import wraps
class MWT:
"""Memoize With Timeout"""
_caches = {}
_timeouts = {}