Folder Tree Generator is a Python module that generates a text representation of the folders and files in a given directory. It supports ignore files, such as .gitignore, to exclude certain files or folders from the output.
Typical string output:
my_project/
|-- .gitignore
|-- main.py
|-- utils.py
|-- data/
| |-- input.txt
| |-- output.txt
This tool was created to generate folder structures in a standard text format that could be copied and pasted into an LLM without including all the build artifacts, e.g., repository structures for code analysis. If you want to create your own ignore file, it should be a simple adaptation of a .gitignore file. In 90% of use cases, the existing repo's .gitignore file is sufficient.
You can install the module from PyPI using pip:
pip install folder-tree-generatoror via Poetry:
poetry add folder-tree-generatorYou can use the module as a command-line tool or import it in your Python script.
python folder_tree_generator/folder_tree_generator.py /path/to/your/folder --report_file_path report.txt --ignore_file_path /path/to/your/ignore_folder/.gitignorefrom folder_tree_generator import generate_tree
output_text = generate_tree("/path/to/your/folder", ignore_file_path="/path/to/your/ignore_folder/.gitignore")
print(output_text)You can change the ignore file name by passing an optional argument to the generate_tree function:
output_text = generate_tree("/path/to/your/folder", ignore_file_path="/path/to/your/folder/.myignore")--report_file_path: The name of the report file. Defaults toreport.txtif not provided.--ignore_file_path: The path to the ignore file. If provided, the script will parse the ignore patterns from the file and exclude the matching files and folders from the report.
To set up the development environment, clone the repository and install the required dependencies using Poetry:
git clone https://github.com/seandearnaley/folder-tree-generator.git
cd folder-tree-generator
poetry installTo run the tests, use the following command:
poetry run pytestThis project uses the pytest-cov package to generate test coverage reports. Here's how to use it:
- First, you need to install the
pytest-covpackage if it's not already installed.
pip install pytest-covor
poetry add pytest-covIf you're using Poetry, you can also add pytest-cov to your pyproject.toml file and run poetry install to install it.
- After installing
pytest-cov, you can use it to run your tests and collect coverage data. If you're usingpytestfor testing, you can use the following command:
pytest --cov=folder_tree_generatorThis command tells pytest to collect coverage data for the folder_tree_generator module during the test run.
- Once you've collected coverage data, you can generate a report by running:
coverage reportThis will print a coverage report to the terminal, showing the code coverage for each module in your project.
- If you want a more detailed view, you can generate an HTML report using:
coverage htmlThis will generate an htmlcov directory in your project directory. Inside this directory, you'll find an index.html file. You can open this file in a web browser to view a detailed coverage report that shows which lines of each file were covered by the tests.
- If you're finished checking coverage and want to clear the collected data, you can use the command:
coverage eraseThis will delete the .coverage data file, clearing the collected coverage data.
Remember that code coverage is a useful tool for finding untested parts of your code, but achieving 100% code coverage doesn't necessarily mean your testing is perfect. It's important to write meaningful tests and not just strive for high coverage percentages.
Contributions are welcome! Please feel free to submit a pull request or open an issue on the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for details.