My current code that does not show an error message but also doesn't work:
py import time
from ReadWriteMemory import ReadWriteMemory
process = ReadWriteMemory.get_process_by_name("Tutorial-i386.exe")
process.open()
address = 0x0195A810
health = process.get_pointer(address, offsets=[0])
while True:
value = process.read(health)
print(value)
time.sleep(0.5)