persidict 0.104.5__tar.gz → 0.104.7__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.

Files changed (20) hide show
  1. {persidict-0.104.5 → persidict-0.104.7}/PKG-INFO +6 -1
  2. {persidict-0.104.5 → persidict-0.104.7}/README.md +5 -0
  3. {persidict-0.104.5 → persidict-0.104.7}/pyproject.toml +1 -1
  4. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/.DS_Store +0 -0
  5. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/__init__.py +0 -0
  6. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/basic_s3_dict.py +0 -0
  7. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/cached_appendonly_dict.py +0 -0
  8. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/cached_mutable_dict.py +0 -0
  9. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/empty_dict.py +0 -0
  10. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/file_dir_dict.py +0 -0
  11. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/local_dict.py +0 -0
  12. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/overlapping_multi_dict.py +0 -0
  13. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/persi_dict.py +0 -0
  14. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/s3_dict_file_dir_cached.py +0 -0
  15. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/s3_dict_legacy.py +0 -0
  16. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/safe_chars.py +0 -0
  17. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/safe_str_tuple.py +0 -0
  18. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/safe_str_tuple_signing.py +0 -0
  19. {persidict-0.104.5 → persidict-0.104.7}/src/persidict/singletons.py +0 -0
  20. {persidict-0.104.5 → persidict-0.104.7}/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.104.5
3
+ Version: 0.104.7
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
@@ -35,6 +35,11 @@ Description-Content-Type: text/markdown
35
35
 
36
36
  # persidict
37
37
 
38
+ [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
39
+ [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://pypi.org/project/persidict/)
40
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
41
+ [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
42
+
38
43
  Simple persistent dictionaries for distributed applications in Python.
39
44
 
40
45
  ## 1. What Is It?
@@ -1,5 +1,10 @@
1
1
  # persidict
2
2
 
3
+ [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
4
+ [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://pypi.org/project/persidict/)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
+ [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
7
+
3
8
  Simple persistent dictionaries for distributed applications in Python.
4
9
 
5
10
  ## 1. What Is It?
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.104.5"
7
+ version = "0.104.7"
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"