diff --git a/.gitignore b/.gitignore index 863b198..941e8e0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ images *.json *.log *.txt -rawtext.py \ No newline at end of file +*.pdf +rawtext.py +pdfcloud.py \ No newline at end of file diff --git a/cloud.py b/cloud.py index 3abf370..f3b63aa 100644 --- a/cloud.py +++ b/cloud.py @@ -148,6 +148,7 @@ wc_obj = WordCloud(font_path="ARIALUNI.TTF", contour_color=cc ) +print("Processing words...", end=" ", flush=True) words = wc_obj.process_text(' '.join(comments)) with open(f"wordlists/{args.w}.csv") as list: @@ -173,8 +174,11 @@ for (word, freq) in words.items(): out_freq *= args.boost out_dict[word] = out_freq +print("Done!") +print("Create cloud...", end=" ", flush=True) wordcloud = wc_obj.generate_from_frequencies(out_dict) +print("Done!") if args.color is True: wordcloud.recolor(color_func=colors)