A dictionary where values are removed after a certain time
Project description
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
# When creating a TimerDict specify for how long items should live for:
my_dict = TimerDict(default_duration=timedelta(minutes=5))
# Then add items like you would to any dictionary
my_dict["foo"] = "bar"
# Or use the `put` method if you want to explicitly set the duration for a key
my_dict.put('foo', 'bar', timedelta(seconds=10))
# Getting items also works just like you'd would expect
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.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
timer_dict-0.2.1.tar.gz
(2.4 kB
view details)
Built Distribution
File details
Details for the file timer_dict-0.2.1.tar.gz
.
File metadata
- Download URL: timer_dict-0.2.1.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.10.9 Linux/6.2.5-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57af1e67ec1680e989ce6895e14f41ede4d6273e8b595e613945cc1b3d02f8de |
|
MD5 | fafc574af645056d4e6898e48dfe4b42 |
|
BLAKE2b-256 | d4b6b4e76106494a9ce04c9a48dcd0fcb05f267c9e273ac2a2c48caede463353 |
File details
Details for the file timer_dict-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: timer_dict-0.2.1-py3-none-any.whl
- Upload date:
- Size: 2.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.10.9 Linux/6.2.5-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89b6930e9e1eccc548cda476e432c375291fccac8d684d90d9ae4c9246b76e55 |
|
MD5 | 5facbfdb3324a9298cb829afc23be3e9 |
|
BLAKE2b-256 | 7a0d5cfed5e5c78809dec47623d8effd800287b046e22dbe1f005628122200a6 |