pyo3/examples/word-count/word_count/__init__.py
Alisa Dammer 0ec6603b7a
Remove unrequired encoding header
This is not required anymore for Python 3.
2019-03-03 18:14:12 +01:00

15 lines
351 B
Python

from .word_count import WordCounter, count_line
__all__ = ["WordCounter", "count_line", "search_py"]
def search_py(path, needle):
total = 0
with open(path, "r") as f:
for line in f:
words = line.split(" ")
for word in words:
if word == needle:
total += 1
return total