diskmgr 0.1.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.
@@ -0,0 +1,61 @@
1
+ """
2
+ diskmgr: enumerate, copy and clone hard disks and USB drives.
3
+
4
+ Author: Pandiyaraj Karuppasamy
5
+ Date: Aug-29-2026
6
+ Modified: Aug-29-2026
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ __version__ = "0.1.0"
12
+ __author__ = "Pandiyaraj Karuppasamy"
13
+
14
+ from .errors import (
15
+ DeviceError,
16
+ DiskManagerError,
17
+ InsufficientSpaceError,
18
+ InventoryError,
19
+ OperationCancelled,
20
+ PrivilegeError,
21
+ SafetyError,
22
+ TransferError,
23
+ UnsupportedPlatformError,
24
+ VerificationError,
25
+ )
26
+ from .models import (
27
+ BusType,
28
+ CloneResult,
29
+ PartitionStyle,
30
+ PhysicalDisk,
31
+ TransferMode,
32
+ TransferPlan,
33
+ TransferResult,
34
+ VerifyMode,
35
+ Volume,
36
+ format_bytes,
37
+ )
38
+
39
+ __all__ = [
40
+ "BusType",
41
+ "CloneResult",
42
+ "DeviceError",
43
+ "DiskManagerError",
44
+ "InsufficientSpaceError",
45
+ "InventoryError",
46
+ "OperationCancelled",
47
+ "PartitionStyle",
48
+ "PhysicalDisk",
49
+ "PrivilegeError",
50
+ "SafetyError",
51
+ "TransferError",
52
+ "TransferMode",
53
+ "TransferPlan",
54
+ "TransferResult",
55
+ "UnsupportedPlatformError",
56
+ "VerificationError",
57
+ "VerifyMode",
58
+ "Volume",
59
+ "__version__",
60
+ "format_bytes",
61
+ ]
@@ -0,0 +1,15 @@
1
+ """
2
+ Module entry point so `python -m disk_manager` works.
3
+
4
+ Author: Pandiyaraj Karuppasamy
5
+ Date: Aug-29-2026
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ import sys
11
+
12
+ from .cli import main
13
+
14
+ if __name__ == "__main__":
15
+ sys.exit(main())