diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-05 01:37:15 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-05 01:37:15 +0100 |
commit | 76541f0daf7bf4ae5d1dfbaecfb695e9d18ec718 (patch) | |
tree | f4ce6df4ad6c56010376c6924e0d35e00a417c0f | |
parent | 7686e8869409705480e312562e34a398b2b5854b (diff) | |
download | fuzzycat-76541f0daf7bf4ae5d1dfbaecfb695e9d18ec718.tar.gz fuzzycat-76541f0daf7bf4ae5d1dfbaecfb695e9d18ec718.zip |
move verbose to logging
-rw-r--r-- | fuzzycat/cluster.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index f42b75d..16523af 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -111,8 +111,7 @@ class Cluster: output=sys.stdout, keyfunc=lambda v: v, prefix='fuzzycat-', - tmpdir=None, - verbose=False): + tmpdir=None): """ Files can be a list of files or "-" for stdin. """ @@ -129,9 +128,7 @@ class Cluster: """ keyfunc = self.keyfunc # Save a lookup in loop. with tempfile.NamedTemporaryFile(delete=False, mode="w", prefix=self.prefix) as tf: - for i, line in enumerate(fileinput.input(files=self.files)): - if self.verbose and i % 100000 == 0: - print("{}".format(i), file=sys.stderr) + for line in enumerate(fileinput.input(files=self.files)) try: id, key = keyfunc(json.loads(line)) print("{}\t{}".format(id, key), file=tf) |