Calculate the number of characters in a text file.
$ pip install pycharcounts_cz
pycharcounts_cz
can be used to count characters in a text file
and present results as follows:
from pycharcounts_cz.pycharcounts_cz import count_characters
from pycharcounts_cz.output import full_output
import pandas as pd
file_path = "test.txt" # path to your file
count = count_characters(file_path)
full_output(file_path, count)
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
pycharcounts_cz
was created by Celeste Zhao. It is licensed under the terms of the MIT license.
pycharcounts_cz
was created with cookiecutter
and the py-pkgs-cookiecutter
template.