diff options
Diffstat (limited to 'bin/wired-dedup-h4-items.py')
-rw-r--r-- | bin/wired-dedup-h4-items.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/wired-dedup-h4-items.py b/bin/wired-dedup-h4-items.py new file mode 100644 index 0000000..77858fb --- /dev/null +++ b/bin/wired-dedup-h4-items.py @@ -0,0 +1,13 @@ +import sys, collections + +filename = '%s' %(sys.argv[1]) +with open(filename, newline='') as f: + content = f.readlines() + new_list = [] + for line in content: + if line.startswith('####'): + title = line.strip().split('####')[1].split(' for ')[0] + new_list.append(title) + print(title) + print([item for item, count in collections.Counter(new_list).items() if count > 1]) + |