-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwarcindex.py
executable file
·58 lines (35 loc) · 1.4 KB
/
warcindex.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
"""warcindex - dump warc index"""
import os
import sys
import sys
import os.path
from optparse import OptionParser
from hanzo.warctools import ArchiveRecord
parser = OptionParser(usage="%prog [options] warc warc warc")
parser.add_option("-l", "--limit", dest="limit")
parser.add_option("-O", "--output-format", dest="output_format", help="output format (ignored)")
parser.add_option("-o", "--output", dest="output_format", help="output file (ignored)")
parser.add_option("-L", "--log-level", dest="log_level")
parser.set_defaults(output=None, limit=None, log_level="info")
def main(argv):
(options, input_files) = parser.parse_args(args=argv[1:])
out = sys.stdout
if len(input_files) < 1:
parser.error("no imput warc file(s)")
print '#WARC filename offset warc-type warc-subject-uri warc-record-id content-type content-length'
for name in input_files:
fh = ArchiveRecord.open_archive(name, gzip="auto")
for (offset, record, errors) in fh.read_records(limit=None):
if record:
print name, offset, record.type, record.url, record.id, record.content_type, record.content_length
elif errors:
pass
# ignore
else:
pass
# no errors at tail
fh.close()
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))