I have a file reader that reads n bytes from a file and returns a string of chars representing that (binary) data. I want to read up n bytes into a numpy array
Without knowing what you've got coming in it's tough, but if it were comma delimited integers you could do something like this:
myInts = map(int, myString.split(','))