hippius 0.1.14__tar.gz → 0.2.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hippius
3
- Version: 0.1.14
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: ipfshttpclient (>=0.7.0,<0.8.0)
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"
@@ -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.1.14"
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