TimerDict
This package provides a simple dictionary-like class, which drops items after a
set amount of time.
from datetime import timedelta
from typing import Union
my_dict = TimerDict(default_duration=timedelta(minutes=5))
my_dict["foo"] = "bar"
my_dict.put('foo', 'bar', timedelta(seconds=10))
print(my_dict['foo'])
Implementation Details
Internally, the dict keeps a queue of all items and when they should be removed.
The items are then purged whenever control flow passes to the dictionary, such
as when adding or getting an item. There is no separate thread or async
task
running in the background.