Most efficient way of loading formatted binary files in Python - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T05:02:12Zhttp://stackoverflow.com/feeds/question/703262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python4Most efficient way of loading formatted binary files in PythonLin2009-03-31T22:03:36Z2009-04-01T06:12:57Z
<p>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?</p>
http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python/703267#7032678Answer by sysrqb for Most efficient way of loading formatted binary files in Pythonsysrqb2009-03-31T22:05:12Z2009-03-31T22:05:12Z<p>Use the <a href="http://docs.python.org/library/struct.html" rel="nofollow">struct</a> module, or possibly a custom module written in C if performance is critical.</p>
http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python/703588#7035880Answer by eliben for Most efficient way of loading formatted binary files in Pythoneliben2009-04-01T00:27:11Z2009-04-01T00:27:11Z<p>I found that <code>array.fromfile</code> is the fastest methods for homogeneous data.</p>
http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python/703957#7039573Answer by Theran for Most efficient way of loading formatted binary files in PythonTheran2009-04-01T03:32:45Z2009-04-01T03:32:45Z<p><a href="http://docs.python.org/library/struct.html" rel="nofollow">struct</a> should work for the header section, while numpy's <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.memmap.html#numpy.memmap" rel="nofollow">memmap</a> 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.</p>
http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python/704265#7042651Answer by Toni Ruža for Most efficient way of loading formatted binary files in PythonToni Ruža2009-04-01T06:12:57Z2009-04-01T06:12:57Z<p><a href="http://www.hl.id.au/projects/bdec/" rel="nofollow">bdec</a> seems promising.</p>