persidict 0.105.5__tar.gz → 0.105.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: persidict
3
- Version: 0.105.5
3
+ Version: 0.105.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
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.105.5"
7
+ version = "0.105.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"
@@ -1,3 +1,13 @@
1
+ """Basic S3-backed persistent dictionary.
2
+
3
+ This module provides `BasicS3Dict`, a concrete implementation of the
4
+ `PersiDict` interface that stores each dictionary entry as a separate
5
+ object in Amazon S3. It is designed for simple, low-overhead persistence
6
+ without local caching, while exposing a familiar mapping-like API.
7
+
8
+ See individual method docstrings for details on semantics and exceptions.
9
+ """
10
+
1
11
  from __future__ import annotations
2
12
 
3
13
  from typing import Any, Optional
File without changes