up vote 5 down vote favorite
share [g+] share [fb]

I have binary files no larger than 20Mb in size that have a header section and then a data section containing sequences of uchars. I have Numpy, SciPy, etc. and each library has different ways of loading in the data. Any suggestions for the most efficient methods I should use?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

struct should work for the header section, while numpy's memmap would be efficient for the data section if you are going to manipulate it in numpy anyways. There's no need to stress out about being inconsistent here. Both methods are compatible, just use the right tool for each job.

link|improve this answer
feedback

Use the struct module, or possibly a custom module written in C if performance is critical.

link|improve this answer
feedback

bdec seems promising.

link|improve this answer
feedback

I found that array.fromfile is the fastest methods for homogeneous data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.