9 lines
261 B
Python
9 lines
261 B
Python
from controller import Controller
|
|
|
|
controller = Controller(vm_name="KUbuntu-23.10", username="username", password="password", host="192.168.56.101")
|
|
|
|
input("enter to continue")
|
|
img = controller.get_state()
|
|
print(img)
|
|
input("enter to continue")
|
|
controller.step() |