Is there a python module for regex match in zip files - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T23:32:06Zhttp://stackoverflow.com/feeds/question/14281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14281/is-there-a-python-module-for-regex-match-in-zip-files3Is there a python module for regex match in zip filescnu2008-08-18T07:41:09Z2008-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#143040Answer by jdd for Is there a python module for regex match in zip filesjdd2008-08-18T08:06:30Z2008-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#143140Answer by Craig.Nicol for Is there a python module for regex match in zip filesCraig.Nicol2008-08-18T08:10:57Z2008-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#143207Answer by Mark Harrison for Is there a python module for regex match in zip filesMark Harrison2008-08-18T08:19:06Z2008-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#418220Answer by Chris Conway for Is there a python module for regex match in zip filesChris Conway2008-09-03T14:42:10Z2008-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—file layout, block structures, back-references—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>