Mercurial > hg > cc > azure
comparison master/wecu/sac_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/python3 | |
2 import os | |
3 import sys | |
4 import re | |
5 | |
6 is_regex = sys.argv[1] == 'true' | |
7 search_terms = sys.argv[2:] | |
8 search_terms_counters = dict() | |
9 | |
10 # Initialise | |
11 for term in search_terms: | |
12 search_terms_counters[term] = 0 | |
13 | |
14 if not is_regex: | |
15 for line in sys.stdin: | |
16 for term in search_terms_counters: | |
17 search_terms_counters[term] += line.count(term) | |
18 else: | |
19 for line in sys.stdin: | |
20 for term_regex in search_terms_counters: | |
21 search_terms_counters[term_regex] += len(re.findall(term_regex, line)) | |
22 | |
23 | |
24 for term in search_terms_counters: | |
25 print("{}\t{}".format(term, search_terms_counters[term])) |