-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoco.py
61 lines (43 loc) · 1.65 KB
/
woco.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
56
57
58
59
60
61
"""Приложение, считающее частоту слов во входном потоке."""
import argparse
import multiprocessing
import sys
from collections import Counter
arg_parser = argparse.ArgumentParser(
prog='woco', description='Конфигурация запуска счетчика слов')
arg_parser.add_argument(
'--processes', '-p', type=int, default=1,
help='Количество процессов (по-умолчанию 1)')
arg_parser.add_argument(
'--input_file', '-i', type=str, default='test.txt',
help='Входящий поток (файл) (по-умолчанию test.txt)')
def count_words(string):
"""Возвращает счетчик для строки string.
:param string: Строка
:type string: str
:rtype collections.Counter
"""
return Counter(string.split())
def file_data(file_name):
"""Генератор данных из файла.
:param file_name: Путь до файла
:type file_name: str
"""
with open(file_name) as f:
for line in f:
if not line.isspace():
yield line
def start():
"""Запускает подсчет слов в файле."""
args = arg_parser.parse_args()
pool = multiprocessing.Pool(processes=args.processes)
counters = pool.imap(count_words, file_data(args.input_file), 25)
# Итоговый счетчик
counter = Counter()
for c in counters:
counter += c
for word, count in counter.most_common():
sys.stdout.write('{0} {1}\n'.format(word, count))
if __name__ == '__main__':
multiprocessing.freeze_support()
start()