hippius 0.2.46__py3-none-any.whl → 0.2.47__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.
- {hippius-0.2.46.dist-info → hippius-0.2.47.dist-info}/METADATA +1 -1
- {hippius-0.2.46.dist-info → hippius-0.2.47.dist-info}/RECORD +6 -6
- hippius_sdk/__init__.py +1 -1
- hippius_sdk/key_storage.py +9 -1
- {hippius-0.2.46.dist-info → hippius-0.2.47.dist-info}/WHEEL +0 -0
- {hippius-0.2.46.dist-info → hippius-0.2.47.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
hippius_sdk/__init__.py,sha256=
|
1
|
+
hippius_sdk/__init__.py,sha256=8Gs2aSOn_1wHG3ENFpjoSg277im_Su46ZNER21kHP6I,1474
|
2
2
|
hippius_sdk/cli.py,sha256=aqKOYSBSWt7UhcpFt7wf9yIPJ3bznpsJ6ehOnuZ4usI,18235
|
3
3
|
hippius_sdk/cli_assets.py,sha256=rjH3Z5A1CQr2d5CIAAAb0WMCjoZZlMWcdo0f93KqluE,635
|
4
4
|
hippius_sdk/cli_handlers.py,sha256=HkZldE8ZDS6WHu8aSoeS_rYZ4kp3F-Kdzu-weY1c0vU,128258
|
@@ -15,10 +15,10 @@ hippius_sdk/db_utils.py,sha256=-x0rbN0as7Tn3PJPZBYCgreZe52FLH40ppA1TLxsg90,1851
|
|
15
15
|
hippius_sdk/errors.py,sha256=LScJJmawVAx7aRzqqQguYSkf9iazSjEQEBNlD_GXZ6Y,1589
|
16
16
|
hippius_sdk/ipfs.py,sha256=WVC0bpHcHAV8XvYbeJ_zE_6LYO-sT96xJDxLuw2Obog,104555
|
17
17
|
hippius_sdk/ipfs_core.py,sha256=xsY0Ox6anmrkbrxkRr2RXzEukB-EEaW_oMvO0Va3vjQ,13148
|
18
|
-
hippius_sdk/key_storage.py,sha256=
|
18
|
+
hippius_sdk/key_storage.py,sha256=HWV9mM5Zkq_xxn7A72L7gvlYBtcmMwOyeFdtl8ExlmE,8315
|
19
19
|
hippius_sdk/substrate.py,sha256=4a7UIE4UqGcDW7luKTBgSDqfb2OIZusB39G1UiRs_YU,50158
|
20
20
|
hippius_sdk/utils.py,sha256=rJ611yvwKSyiBpYU3w-SuyQxoghMGU-ePuslrPv5H5g,7388
|
21
|
-
hippius-0.2.
|
22
|
-
hippius-0.2.
|
23
|
-
hippius-0.2.
|
24
|
-
hippius-0.2.
|
21
|
+
hippius-0.2.47.dist-info/METADATA,sha256=693t4mCyrKS45Bw7369ISi0chO-UmxI0fDgzm-cHW7Q,30088
|
22
|
+
hippius-0.2.47.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
23
|
+
hippius-0.2.47.dist-info/entry_points.txt,sha256=bFAZjW3vndretf9-8s587jA2ebMVI7puhn_lVs8jPc8,149
|
24
|
+
hippius-0.2.47.dist-info/RECORD,,
|
hippius_sdk/__init__.py
CHANGED
@@ -26,7 +26,7 @@ from hippius_sdk.config import (
|
|
26
26
|
from hippius_sdk.ipfs import IPFSClient, S3PublishResult, S3DownloadResult
|
27
27
|
from hippius_sdk.utils import format_cid, format_size, hex_to_ipfs_cid
|
28
28
|
|
29
|
-
__version__ = "0.2.
|
29
|
+
__version__ = "0.2.47"
|
30
30
|
__all__ = [
|
31
31
|
"HippiusClient",
|
32
32
|
"IPFSClient",
|
hippius_sdk/key_storage.py
CHANGED
@@ -19,6 +19,10 @@ try:
|
|
19
19
|
except ImportError:
|
20
20
|
ASYNCPG_AVAILABLE = False
|
21
21
|
|
22
|
+
import logging
|
23
|
+
|
24
|
+
logger = logging.getLogger()
|
25
|
+
|
22
26
|
|
23
27
|
class KeyStorageError(Exception):
|
24
28
|
"""Base exception for key storage operations."""
|
@@ -202,7 +206,9 @@ def is_key_storage_enabled() -> bool:
|
|
202
206
|
"""
|
203
207
|
# Check if explicitly disabled
|
204
208
|
config_value = get_config_value("key_storage", "enabled", None)
|
205
|
-
|
209
|
+
|
210
|
+
logger.info(f"encryption config.key_storage {config_value=}")
|
211
|
+
if not config_value:
|
206
212
|
return False
|
207
213
|
|
208
214
|
# If explicitly enabled, return True
|
@@ -211,6 +217,8 @@ def is_key_storage_enabled() -> bool:
|
|
211
217
|
|
212
218
|
# If not set in config, auto-detect based on asyncpg availability
|
213
219
|
# This allows users who install [key_storage] extra to use it without manual config
|
220
|
+
logger.info(f"db orm available {ASYNCPG_AVAILABLE=}")
|
221
|
+
|
214
222
|
return ASYNCPG_AVAILABLE
|
215
223
|
|
216
224
|
|
File without changes
|
File without changes
|