A CLI utility written in Python to help you count files, grouped by extension, in a directory. By default, it will count files recursively in current working directory and all of its subdirectories, and will display a table showing the frequency for each file extension (e.g.: .txt, .py, .html, .css) and the total number of files found.
updated def show_2columns with new params: max_word_width(the longest extension name)
and total_occurrences(total number of files found)
max_word_width = max(DEFAULT_EXTENSION_COL_WIDTH, max_word_width)
freq_col_width = max(DEFAULT_FREQ_COL_WIDTH, len(str(total_occurrences)))
changelog: