1
0

Dockerize

This commit is contained in:
2018-09-16 12:35:43 +01:00
parent 6f16104524
commit a3ddc41118
6 changed files with 64 additions and 11 deletions

8
src/search.py Normal file
View File

@@ -0,0 +1,8 @@
from fuzzywuzzy import process
choices = open('tmp').read().split('\n')
search_term = input('Search term: ')
for result, matchness in process.extract(search_term, choices):
print(str(matchness), result)