Most efficient way of loading formatted binary files in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:02:12Z http://stackoverflow.com/feeds/question/703262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python 4 Most efficient way of loading formatted binary files in Python Lin 2009-03-31T22:03:36Z 2009-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#703267 8 Answer by sysrqb for Most efficient way of loading formatted binary files in Python sysrqb 2009-03-31T22:05:12Z 2009-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#703588 0 Answer by eliben for Most efficient way of loading formatted binary files in Python eliben 2009-04-01T00:27:11Z 2009-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#703957 3 Answer by Theran for Most efficient way of loading formatted binary files in Python Theran 2009-04-01T03:32:45Z 2009-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#704265 1 Answer by Toni Ruža for Most efficient way of loading formatted binary files in Python Toni Ruža 2009-04-01T06:12:57Z 2009-04-01T06:12:57Z <p><a href="http://www.hl.id.au/projects/bdec/" rel="nofollow">bdec</a> seems promising.</p>