pylocc is a command-line tool for counting lines of code in various programming languages. It helps you get a quick overview of the size and composition of your codebase.
This project draws instiparion from scc and uses the same language.json file.
Please have a look at the documentaiton page for more details.
- Counts lines of code, comments, and blank lines.
- Supports a wide range of programming languages.
- Can process single files or entire directories.
- Provides both aggregated and per-file reports.
- Easy to use and configure.
- Python >= 3.10
pip install pylocc
pylocc --help- Clone the repository:
git clone https://github.com/your-username/pylocc.git
- Navigate to the project directory:
cd pylocc - Install the dependencies:
uv run pylocc
To use pylocc, run the following command:
pylocc [OPTIONS] <file_or_directory>or
uv run pylocc --help
Usage: pylocc [OPTIONS] FILE
Run pylocc on the specified file or directory.
Options:
--by-file Generate report by file.
--output FILE Stores the output report in csv format to the given path
--help Show this message and exit.
--by-file: Generate a report for each file individually.--output <path>: Save the report to a file.
- Count lines of code in a single file:
pylocc my_file.py
- Count lines of code in a directory and all its subdirectories:
pylocc my_project/
- Generate a per-file report:
pylocc --by-file my_project/
- Save the report to a file:
pylocc --output report.csv my_project/
pylocc uses a language.json file to define the comment syntax for different languages. You can customize this file to add new languages or modify existing ones.
Each language entry in language.json has the following structure:
{
"LanguageName": {
"extensions": ["ext1", "ext2"],
"line_comment": ["//"],
"multi_line": [["/*", "*/"]]
}
}extensions: A list of file extensions for the language.line_comment: A list of strings that represent single-line comments.multi_line: A list of pairs of strings that represent the start and end of multi-line comments.
Contributions are welcome! Please feel free to open an issue or submit a pull request.
