altcodepro-polydb-python 2.3.10__py3-none-any.whl → 2.3.11__py3-none-any.whl
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.
- {altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/METADATA +1 -1
- {altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/RECORD +6 -6
- polydb/PolyDB.py +2 -1
- {altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/WHEEL +0 -0
- {altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/licenses/LICENSE +0 -0
- {altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/top_level.txt +0 -0
{altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: altcodepro-polydb-python
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.11
|
|
4
4
|
Summary: Production-ready multi-cloud database abstraction layer with connection pooling, retry logic, and thread safety
|
|
5
5
|
Author: AltCodePro
|
|
6
6
|
Project-URL: Homepage, https://github.com/altcodepro/polydb-python
|
{altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
altcodepro_polydb_python-2.3.
|
|
2
|
-
polydb/PolyDB.py,sha256=
|
|
1
|
+
altcodepro_polydb_python-2.3.11.dist-info/licenses/LICENSE,sha256=9X8GLocsBwy-5aR5JGOt2SAMDDPs9Qv-YnqmHBHOXrw,1067
|
|
2
|
+
polydb/PolyDB.py,sha256=DJjS1a-gjkqqo32avhRM-4CT-9ZZO3LZJ_sUOfZ99L0,23485
|
|
3
3
|
polydb/__init__.py,sha256=UhUzfSvmMgKbV2tSME1ooIyfshIBi7_WyU4xl1tWWiA,1454
|
|
4
4
|
polydb/advanced_query.py,sha256=cxMB-EB-qT3bWXJlhmjnMCUtrzogORWyoEfS50Dy7go,4280
|
|
5
5
|
polydb/batch.py,sha256=_DjWZa1ZXYSk6MLKqFe0eT7SYVRZtYNqZb9bI8Y2sao,4566
|
|
@@ -55,7 +55,7 @@ polydb/base/ObjectStorageAdapter.py,sha256=mNdJnhoB3VqSCQvmcoel5PohrVQw7Nrajdd5s
|
|
|
55
55
|
polydb/base/QueueAdapter.py,sha256=jFgyG-SUK4nhRNxm2NbzUbwnA9b_5iAC-ikLSUpXRwk,799
|
|
56
56
|
polydb/base/SharedFilesAdapter.py,sha256=kXbJmtn_cwEyAZ-1AvFrmesCLSwu43ycTV3S4BmwrO4,853
|
|
57
57
|
polydb/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
altcodepro_polydb_python-2.3.
|
|
59
|
-
altcodepro_polydb_python-2.3.
|
|
60
|
-
altcodepro_polydb_python-2.3.
|
|
61
|
-
altcodepro_polydb_python-2.3.
|
|
58
|
+
altcodepro_polydb_python-2.3.11.dist-info/METADATA,sha256=CAYda7inNH2AkpAJMK0f12Td5t8TA9W9x8SD6ffYpck,12303
|
|
59
|
+
altcodepro_polydb_python-2.3.11.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
60
|
+
altcodepro_polydb_python-2.3.11.dist-info/top_level.txt,sha256=WgLFWJoYjUhwvyPxJFl6jYLrVFuBJDX3OABf4ocwk_E,7
|
|
61
|
+
altcodepro_polydb_python-2.3.11.dist-info/RECORD,,
|
polydb/PolyDB.py
CHANGED
|
@@ -23,7 +23,6 @@ from .types import JsonDict, Lookup
|
|
|
23
23
|
from .utils import setup_logger
|
|
24
24
|
from .validation import ModelValidator, SchemaValidator
|
|
25
25
|
|
|
26
|
-
|
|
27
26
|
ModelRef = Union[Type, str]
|
|
28
27
|
|
|
29
28
|
|
|
@@ -336,6 +335,7 @@ class PolyDB:
|
|
|
336
335
|
metadata: Optional[Dict[str, Any]] = None,
|
|
337
336
|
storage_name: str = "default",
|
|
338
337
|
optimize: bool = True,
|
|
338
|
+
container_name: Optional[str] = None,
|
|
339
339
|
) -> str:
|
|
340
340
|
storage = self.get_object_storage(storage_name)
|
|
341
341
|
return storage.put(
|
|
@@ -345,6 +345,7 @@ class PolyDB:
|
|
|
345
345
|
optimize=optimize,
|
|
346
346
|
media_type=media_type,
|
|
347
347
|
metadata=metadata or {},
|
|
348
|
+
container_name=container_name,
|
|
348
349
|
)
|
|
349
350
|
|
|
350
351
|
def get_blob(
|
{altcodepro_polydb_python-2.3.10.dist-info → altcodepro_polydb_python-2.3.11.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|