persidict 0.104.3__py3-none-any.whl → 0.104.4__py3-none-any.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.
Potentially problematic release.
This version of persidict might be problematic. Click here for more details.
persidict/.DS_Store
ADDED
|
Binary file
|
persidict/__init__.py
CHANGED
|
@@ -34,6 +34,10 @@ Note:
|
|
|
34
34
|
All persistent dictionaries support multiple serialization formats, including
|
|
35
35
|
pickle and JSON, with automatic type handling and collision-safe key encoding.
|
|
36
36
|
"""
|
|
37
|
+
|
|
38
|
+
from importlib import metadata as _md
|
|
39
|
+
__version__ = _md.version("persidict")
|
|
40
|
+
|
|
37
41
|
from .safe_chars import *
|
|
38
42
|
from .safe_str_tuple import *
|
|
39
43
|
from .persi_dict import PersiDict, PersiDictKey
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: persidict
|
|
3
|
-
Version: 0.104.
|
|
3
|
+
Version: 0.104.4
|
|
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
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
persidict
|
|
1
|
+
persidict/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
2
|
+
persidict/__init__.py,sha256=UML46oyLOcUSI-kX644TSbQrdh8z9ZEOAypdNmbWWmA,2506
|
|
2
3
|
persidict/basic_s3_dict.py,sha256=2Uw8Jsyx6d9Jr9Ge5xptWXZhl4AB6RdfHF21wNZd0SU,23232
|
|
3
4
|
persidict/cached_appendonly_dict.py,sha256=T1rCf2PYR0wDCcMLyB8FJ6eqlBgkeFO6ChZb0E96yP8,9754
|
|
4
5
|
persidict/cached_mutable_dict.py,sha256=N-oInUol1y_VlZKyQ0TNPuwolcSbMLIyjtDoxo93A8Y,8979
|
|
@@ -14,6 +15,6 @@ persidict/safe_str_tuple.py,sha256=BSRMNgLfZoAwS7ZkiVA3fV2sfj2i_NO1tjstVP-XGOU,8
|
|
|
14
15
|
persidict/safe_str_tuple_signing.py,sha256=mpOfx_xyprc0_c60XPB_EihI3vR1gOn6T03iCx1HwwQ,7494
|
|
15
16
|
persidict/singletons.py,sha256=3X60V9S73-0oHoCRapbBT9eQ8HuOf_hZHAgZW_vB5oo,7236
|
|
16
17
|
persidict/write_once_dict.py,sha256=aoYc_tAWCLb2i2jjXgkQPxYb6t7H1KdUdc_dwv56uXE,12667
|
|
17
|
-
persidict-0.104.
|
|
18
|
-
persidict-0.104.
|
|
19
|
-
persidict-0.104.
|
|
18
|
+
persidict-0.104.4.dist-info/WHEEL,sha256=X16MKk8bp2DRsAuyteHJ-9qOjzmnY0x1aj0P1ftqqWA,78
|
|
19
|
+
persidict-0.104.4.dist-info/METADATA,sha256=VTmk_LNS5uWXeCALQXOdEJCVgWYn4RzS2fNL83yOfQU,12953
|
|
20
|
+
persidict-0.104.4.dist-info/RECORD,,
|
|
File without changes
|