python convert memoryview to string
05:03 02 Aug 2017

As a result of the following code:

overlapped = pywintypes.OVERLAPPED()
buffer = win32file.AllocateReadBuffer(1024*4)
fullDataRead = []
hr, data = win32file.ReadFile(handle, buffer, overlapped)
n = win32file.GetOverlappedResult(handle, overlapped, 1)
read = str(data[:n])
fullDataRead.append(read)
print(fullDataRead)

I get

['']

but I need strings or bytes that are inside. How can I read a memoryview object?

python