How to read from pointer address in Python?
How to read from pointer address in Python? I want to read in a Python script a number of bytes starting from a specific address. E.g., I want to read 40000 bytes starting from 0x561124456. The pointer is given from a C# app. I want to use this method to pass data between the app and script. I've used a TCP socket via localhost, but I want to try this method also. How can I do this? Why do you want to do this? Python does not have pointers. What is responsible for putting those bytes at that address in the first place? – Daniel Roseman Feb 15 at 13:57 @DanielRoseman I've updated the question. – Cristian M Feb 15 at 14:02 I wonder if cty...