persidict 0.105.18__tar.gz → 0.105.20__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.105.18 → persidict-0.105.20}/PKG-INFO +3 -8
- {persidict-0.105.18 → persidict-0.105.20}/pyproject.toml +11 -10
- persidict-0.105.18/src/persidict/.DS_Store +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/README.md +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/__init__.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/basic_s3_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/cached_appendonly_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/cached_mutable_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/empty_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/file_dir_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/local_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/overlapping_multi_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/persi_dict.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/s3_dict_file_dir_cached.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/safe_chars.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/safe_str_tuple.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/safe_str_tuple_signing.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/src/persidict/singletons.py +0 -0
- {persidict-0.105.18 → persidict-0.105.20}/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.105.
|
|
3
|
+
Version: 0.105.20
|
|
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
|
|
@@ -29,15 +29,10 @@ Requires-Dist: sphinx-rtd-theme
|
|
|
29
29
|
Requires-Dist: furo
|
|
30
30
|
Requires-Dist: sphinx-book-theme
|
|
31
31
|
Requires-Dist: boto3 ; extra == 'aws'
|
|
32
|
-
Requires-Dist: numpy ; extra == 'dev'
|
|
33
|
-
Requires-Dist: pandas ; extra == 'dev'
|
|
34
|
-
Requires-Dist: boto3 ; extra == 'dev'
|
|
35
|
-
Requires-Dist: moto ; extra == 'dev'
|
|
36
|
-
Requires-Dist: pytest ; extra == 'dev'
|
|
37
32
|
Requires-Python: >=3.10
|
|
38
|
-
Project-URL:
|
|
33
|
+
Project-URL: Docs, https://persidict.readthedocs.io/
|
|
34
|
+
Project-URL: Home, https://github.com/pythagoras-dev/persidict
|
|
39
35
|
Provides-Extra: aws
|
|
40
|
-
Provides-Extra: dev
|
|
41
36
|
Description-Content-Type: text/markdown
|
|
42
37
|
|
|
43
38
|
# persidict
|
|
@@ -4,7 +4,7 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "persidict"
|
|
7
|
-
version = "0.105.
|
|
7
|
+
version = "0.105.20"
|
|
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"
|
|
@@ -41,17 +41,10 @@ dependencies = [
|
|
|
41
41
|
]
|
|
42
42
|
|
|
43
43
|
[project.urls]
|
|
44
|
-
|
|
44
|
+
Home = "https://github.com/pythagoras-dev/persidict"
|
|
45
|
+
Docs = "https://persidict.readthedocs.io/"
|
|
45
46
|
|
|
46
47
|
[project.optional-dependencies]
|
|
47
|
-
dev = [
|
|
48
|
-
"numpy",
|
|
49
|
-
"pandas",
|
|
50
|
-
"boto3",
|
|
51
|
-
"moto",
|
|
52
|
-
"pytest"
|
|
53
|
-
]
|
|
54
|
-
|
|
55
48
|
aws = [
|
|
56
49
|
"boto3"
|
|
57
50
|
]
|
|
@@ -63,3 +56,11 @@ docs = [
|
|
|
63
56
|
"pydata_sphinx_theme",
|
|
64
57
|
"furo",
|
|
65
58
|
]
|
|
59
|
+
|
|
60
|
+
dev = [
|
|
61
|
+
"numpy",
|
|
62
|
+
"pandas",
|
|
63
|
+
"boto3",
|
|
64
|
+
"moto",
|
|
65
|
+
"pytest"
|
|
66
|
+
]
|
|
Binary file
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|