initial commit

This commit is contained in:
2023-09-10 13:23:07 +02:00
commit 984c188c20
13 changed files with 474 additions and 0 deletions

16
test.py Normal file
View File

@@ -0,0 +1,16 @@
from diskutil.manager import Manager
from diskutil.blockdev import block_device_from_file
def main():
bd = block_device_from_file('test.img')
m = Manager()
m.add_device(bd)
print("done")
if __name__ == '__main__':
main()