persidict 0.36.7__tar.gz → 0.36.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.36.7
3
+ Version: 0.36.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
@@ -155,7 +155,7 @@ print(f"API Key: {cloud_config['api_key']}")
155
155
  ### 4.2 Differences
156
156
 
157
157
  * **Persistence**: Data is saved between program executions.
158
- * **Keys**: Keys must be strings or sequences of URL/filename-safe strings.
158
+ * **Keys**: Keys must be URL/filename-safe strings or their sequences.
159
159
  * **Values**: Values must be pickleable.
160
160
  You can also constrain values to a specific class.
161
161
  * **Order**: Insertion order is not preserved.
@@ -121,7 +121,7 @@ print(f"API Key: {cloud_config['api_key']}")
121
121
  ### 4.2 Differences
122
122
 
123
123
  * **Persistence**: Data is saved between program executions.
124
- * **Keys**: Keys must be strings or sequences of URL/filename-safe strings.
124
+ * **Keys**: Keys must be URL/filename-safe strings or their sequences.
125
125
  * **Values**: Values must be pickleable.
126
126
  You can also constrain values to a specific class.
127
127
  * **Order**: Insertion order is not preserved.
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.36.7"
7
+ version = "0.36.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"