persidict 0.105.6__tar.gz → 0.105.8__tar.gz

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.

Potentially problematic release.


This version of persidict might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: persidict
3
- Version: 0.105.6
3
+ Version: 0.105.8
4
4
  Summary: Simple persistent key-value store for Python. Values are stored as files on a disk or as S3 objects on AWS cloud.
5
5
  Keywords: persistence,dicts,distributed,parallel
6
6
  Author: Vlad (Volodymyr) Pavlov
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.105.6"
7
+ version = "0.105.8"
8
8
  description = "Simple persistent key-value store for Python. Values are stored as files on a disk or as S3 objects on AWS cloud."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -56,4 +56,33 @@ from .singletons import KEEP_CURRENT, DELETE_CURRENT
56
56
  from .overlapping_multi_dict import OverlappingMultiDict
57
57
  from .cached_appendonly_dict import AppendOnlyDictCached
58
58
  from .cached_mutable_dict import MutableDictCached
59
- from .local_dict import LocalDict
59
+ from .local_dict import LocalDict
60
+
61
+ __all__ = [
62
+ # Core classes
63
+ 'PersiDict',
64
+ 'PersiDictKey',
65
+ 'FileDirDict',
66
+ 'S3Dict',
67
+ 'S3Dict_FileDirCached',
68
+ 'BasicS3Dict',
69
+ 'LocalDict',
70
+ # Wrapper classes
71
+ 'WriteOnceDict',
72
+ 'EmptyDict',
73
+ 'OverlappingMultiDict',
74
+ 'AppendOnlyDictCached',
75
+ 'MutableDictCached',
76
+ # Key types
77
+ 'SafeStrTuple',
78
+ 'NonEmptySafeStrTuple',
79
+ # Functions
80
+ 'get_safe_chars',
81
+ 'replace_unsafe_chars',
82
+ # Constants/Jokers
83
+ 'KEEP_CURRENT',
84
+ 'DELETE_CURRENT',
85
+ 'Joker',
86
+ 'KeepCurrentFlag',
87
+ 'DeleteCurrentFlag',
88
+ ]
File without changes