cachebox 5.2.1__cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cachebox/__init__.py ADDED
@@ -0,0 +1,26 @@
1
+ from ._core import (
2
+ __author__ as __author__,
3
+ __version__ as __version__,
4
+ )
5
+ from ._cachebox import (
6
+ BaseCacheImpl as BaseCacheImpl,
7
+ Cache as Cache,
8
+ FIFOCache as FIFOCache,
9
+ RRCache as RRCache,
10
+ LRUCache as LRUCache,
11
+ LFUCache as LFUCache,
12
+ TTLCache as TTLCache,
13
+ VTTLCache as VTTLCache,
14
+ IteratorView as IteratorView,
15
+ )
16
+ from .utils import (
17
+ Frozen as Frozen,
18
+ cached as cached,
19
+ cachedmethod as cachedmethod,
20
+ make_key as make_key,
21
+ make_hash_key as make_hash_key,
22
+ make_typed_key as make_typed_key,
23
+ EVENT_HIT as EVENT_HIT,
24
+ EVENT_MISS as EVENT_MISS,
25
+ is_cached as is_cached,
26
+ )