neptune-sdk 0.0.1.dev602__tar.gz → 0.0.1.dev605__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.4
2
2
  Name: neptune-sdk
3
- Version: 0.0.1.dev602
3
+ Version: 0.0.1.dev605
4
4
  Summary: Python SDK for Neptune BitTorrent client JSON-RPC API
5
5
  License-Expression: GPL-3.0-only
6
6
  Requires-Python: >=3.10
@@ -14,7 +14,7 @@ dependencies = [
14
14
  "httpx>=0.27",
15
15
  "pydantic>=2",
16
16
  ]
17
- version = "0.0.1.dev602"
17
+ version = "0.0.1.dev605"
18
18
 
19
19
  [dependency-groups]
20
20
  dev = [
@@ -27,6 +27,7 @@ class MainDataTorrent:
27
27
  total_length: int
28
28
  selected_size: int
29
29
  add_at: int
30
+ completed_at: int
30
31
  private: bool
31
32
  total_seeding: int
32
33
  total_downloading: int
@@ -51,6 +51,7 @@ TORRENT_JSON = {
51
51
  "total_length": 100,
52
52
  "selected_size": 100,
53
53
  "add_at": 0,
54
+ "completed_at": 0,
54
55
  "total_seeding": 0,
55
56
  "total_downloading": 1,
56
57
  "connected_seeding": 0,