Is there a python module for regex match in zip files - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:32:06Z http://stackoverflow.com/feeds/question/14281 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/14281/is-there-a-python-module-for-regex-match-in-zip-files 3 Is there a python module for regex match in zip files cnu 2008-08-18T07:41:09Z 2008-09-03T14:42:10Z <p>I have over a million text files compressed into 40 zip files. I also have a list of about 500 model names of phones. I want to find out the number of times a particular model was mentioned in the text files. </p> <p>Is there any python module which can do a regex match on the files without unzipping it. Is there a simple way to solve this problem without unzipping?</p> http://stackoverflow.com/questions/14281/is-there-a-python-module-for-regex-match-in-zip-files/14304#14304 0 Answer by jdd for Is there a python module for regex match in zip files jdd 2008-08-18T08:06:30Z 2008-08-18T08:06:30Z <p>You could loop through the zip files, reading individual files using the zipfile module and running your regex on those, eliminating to unzip all the files at once. </p> <p>I'm fairly certain that you can't run a regex over the zipped data, at least not meaningfully.</p> http://stackoverflow.com/questions/14281/is-there-a-python-module-for-regex-match-in-zip-files/14314#14314 0 Answer by Craig.Nicol for Is there a python module for regex match in zip files Craig.Nicol 2008-08-18T08:10:57Z 2008-08-18T08:10:57Z <p>To access the contents of a zip file you have to unzip it, although the zipfile package makes this fairly easy, as you can unzip each file within an archive individually.</p> <p><a href="http://docs.python.org/lib/module-zipfile.html" rel="nofollow">Python zipfile module</a></p> http://stackoverflow.com/questions/14281/is-there-a-python-module-for-regex-match-in-zip-files/14320#14320 7 Answer by Mark Harrison for Is there a python module for regex match in zip files Mark Harrison 2008-08-18T08:19:06Z 2008-09-03T14:23:56Z <p>There's nothing that will automatically do what you want.</p> <p>However, there is a python zipfile module that will make this easy to do. Here's how to iterate over the lines in the file.</p> <pre><code>#!/usr/bin/python import zipfile f = zipfile.ZipFile('myfile.zip') for subfile in f.namelist(): print subfile data = f.read(subfile) for line in data.split('\n'): print line </code></pre> http://stackoverflow.com/questions/14281/is-there-a-python-module-for-regex-match-in-zip-files/41822#41822 0 Answer by Chris Conway for Is there a python module for regex match in zip files Chris Conway 2008-09-03T14:42:10Z 2008-09-03T14:42:10Z <p>Isn't it (at least theoretically) possible, to read in the ZIP's Huffman coding and then translate the regexp into the Huffman code? Might this be more efficient than first de-compressing the data, then running the regexp?</p> <p>(Note: I know it wouldn't be quite that simple: you'd also have to deal with other aspects of the ZIP coding&mdash;file layout, block structures, back-references&mdash;but one imagines this could be fairly lightweight.)</p> <p>EDIT: Also note that it's probably much more sensible to just use the <code>zipfile</code> solution.</p>