hippius 0.1.14__py3-none-any.whl → 0.2.0__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.1.14.dist-info → hippius-0.2.0.dist-info}/METADATA +2 -2
- hippius-0.2.0.dist-info/RECORD +12 -0
- hippius_sdk/__init__.py +5 -1
- hippius_sdk/cli.py +397 -47
- hippius_sdk/client.py +20 -22
- hippius_sdk/config.py +19 -26
- hippius_sdk/ipfs.py +62 -408
- hippius_sdk/ipfs_core.py +216 -0
- hippius_sdk/substrate.py +233 -59
- hippius_sdk/utils.py +152 -0
- hippius-0.1.14.dist-info/RECORD +0 -10
- {hippius-0.1.14.dist-info → hippius-0.2.0.dist-info}/WHEEL +0 -0
- {hippius-0.1.14.dist-info → hippius-0.2.0.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: hippius
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.2.0
|
4
4
|
Summary: Python SDK and CLI for Hippius blockchain storage
|
5
5
|
Home-page: https://github.com/thenervelab/hippius-sdk
|
6
6
|
Author: Dubs
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
17
17
|
Provides-Extra: clipboard
|
18
18
|
Requires-Dist: base58 (>=2.1.1,<3.0.0)
|
19
19
|
Requires-Dist: cryptography (>=44.0.0,<45.0.0)
|
20
|
-
Requires-Dist:
|
20
|
+
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
21
21
|
Requires-Dist: pydantic (>=2.0.0,<3.0.0)
|
22
22
|
Requires-Dist: pynacl (>=1.5.0,<2.0.0)
|
23
23
|
Requires-Dist: pyperclip (>=1.8.2,<2.0.0) ; extra == "clipboard"
|
@@ -0,0 +1,12 @@
|
|
1
|
+
hippius_sdk/__init__.py,sha256=KzTJTpSpFP1L1euDEkGnXh2pt1ReHGqyFn3atHA1Tfs,1391
|
2
|
+
hippius_sdk/cli.py,sha256=L6_ZypipD9rqUYNqtmq4mB46eAcC4k170NNbnfx41ks,90051
|
3
|
+
hippius_sdk/client.py,sha256=mMKX_m2ZwfbGVAU3zasHZQF0ddToqypkxGKTylruB3Y,14901
|
4
|
+
hippius_sdk/config.py,sha256=WqocYwx-UomLeZ-iFUNDjg9vRcagOBA1Th68XELbuTs,22950
|
5
|
+
hippius_sdk/ipfs.py,sha256=fFcDMR1-XUcSx1stwV_dD4Rr5fdlTGuSl1Zxag3eSSw,49437
|
6
|
+
hippius_sdk/ipfs_core.py,sha256=w6ljgFdUzL-ffKxr4x_W-aYZTNpgyJg5HOFDrLKPILA,6690
|
7
|
+
hippius_sdk/substrate.py,sha256=8Jq6IAGJR22WKQFFmafNOE85Q467JoVyQDK8udVU2d8,42021
|
8
|
+
hippius_sdk/utils.py,sha256=-N0w0RfXhwxJgSkSroxqFMw-0zJQXvcmxM0OS5UtWEY,4145
|
9
|
+
hippius-0.2.0.dist-info/METADATA,sha256=oHxH4kpLHWeDKInHLtKxA1HJWHOEJJWcPc5fMvl_orU,27993
|
10
|
+
hippius-0.2.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
11
|
+
hippius-0.2.0.dist-info/entry_points.txt,sha256=b1lo60zRXmv1ud-c5BC-cJcAfGE5FD4qM_nia6XeQtM,98
|
12
|
+
hippius-0.2.0.dist-info/RECORD,,
|
hippius_sdk/__init__.py
CHANGED
@@ -24,8 +24,9 @@ from hippius_sdk.config import (
|
|
24
24
|
set_seed_phrase,
|
25
25
|
)
|
26
26
|
from hippius_sdk.ipfs import IPFSClient
|
27
|
+
from hippius_sdk.utils import format_cid, format_size, hex_to_ipfs_cid
|
27
28
|
|
28
|
-
__version__ = "0.
|
29
|
+
__version__ = "0.2.0"
|
29
30
|
__all__ = [
|
30
31
|
"HippiusClient",
|
31
32
|
"IPFSClient",
|
@@ -47,6 +48,9 @@ __all__ = [
|
|
47
48
|
"list_accounts",
|
48
49
|
"delete_account",
|
49
50
|
"get_account_address",
|
51
|
+
"format_cid",
|
52
|
+
"format_size",
|
53
|
+
"hex_to_ipfs_cid",
|
50
54
|
]
|
51
55
|
|
52
56
|
# Initialize configuration from environment variables for backward compatibility
|