persidict 0.36.5__tar.gz → 0.36.6__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.
- {persidict-0.36.5 → persidict-0.36.6}/PKG-INFO +2 -2
- {persidict-0.36.5 → persidict-0.36.6}/README.md +1 -1
- {persidict-0.36.5 → persidict-0.36.6}/pyproject.toml +1 -1
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/.DS_Store +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/__init__.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/file_dir_dict.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/jokers.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/overlapping_multi_dict.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/persi_dict.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/s3_dict.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/safe_chars.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/safe_str_tuple.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/safe_str_tuple_signing.py +0 -0
- {persidict-0.36.5 → persidict-0.36.6}/src/persidict/write_once_dict.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: persidict
|
|
3
|
-
Version: 0.36.
|
|
3
|
+
Version: 0.36.6
|
|
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
|
|
@@ -154,7 +154,7 @@ for all persistent dictionaries in the package. It's the foundation
|
|
|
154
154
|
upon which everything else is built.
|
|
155
155
|
* **`PersiDictKey`**: A type hint that specifies what can be used
|
|
156
156
|
as a key in any `PersiDict`. It can be a `SafeStrTuple`, a single string,
|
|
157
|
-
|
|
157
|
+
or a sequence of strings. When a `PesiDict` method requires a key as an input,
|
|
158
158
|
it will accept any of these types and convert them to a `SafeStrTuple` internally.
|
|
159
159
|
* **`SafeStrTuple`**: The core data structure for keys. It's an immutable,
|
|
160
160
|
flat tuple of non-empty, URL/filename-safe strings, ensuring that
|
|
@@ -120,7 +120,7 @@ for all persistent dictionaries in the package. It's the foundation
|
|
|
120
120
|
upon which everything else is built.
|
|
121
121
|
* **`PersiDictKey`**: A type hint that specifies what can be used
|
|
122
122
|
as a key in any `PersiDict`. It can be a `SafeStrTuple`, a single string,
|
|
123
|
-
|
|
123
|
+
or a sequence of strings. When a `PesiDict` method requires a key as an input,
|
|
124
124
|
it will accept any of these types and convert them to a `SafeStrTuple` internally.
|
|
125
125
|
* **`SafeStrTuple`**: The core data structure for keys. It's an immutable,
|
|
126
126
|
flat tuple of non-empty, URL/filename-safe strings, ensuring that
|
|
@@ -4,7 +4,7 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "persidict"
|
|
7
|
-
version = "0.36.
|
|
7
|
+
version = "0.36.6"
|
|
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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|