comparison master/wecu/mapper.py @ 57:ac1a20e627a9

from lukasz git repo 2020-05-26 (see ~/src/wecu), then editted, sac not quite working yet
author Henry S. Thompson <ht@markup.co.uk>
date Wed, 27 May 2020 20:54:34 +0000
parents
children
comparison
equal deleted inserted replaced
56:8ce6a81e2bb4 57:ac1a20e627a9
1 #!/usr/bin/python
2
3 import sys
4
5 response_counter = 0
6 request_counter = 0
7
8 for line in sys.stdin:
9 if line.startswith('WARC-Type: response'):
10 response_counter += 1
11 if line.startswith('WARC-Type: request'):
12 request_counter += 1
13
14 print('request_counter\t{}'.format(request_counter))
15 print('response_counter\t{}'.format(response_counter))
16