Variable
Access to Variables is provided by the VariableService class. Each debugger has its own instance, which can be used through its variable attribute.
Writing Variable
>>> dbg.variable.write("variableName", 42)
Reading Variable
>>> variable = dbg.variable.read("variableName")
>>> print(variable.value)