Skip to main content

Takes a folder path and outputs a text representation of the folders and files, supports ignore files.

Project description

Folder Tree Generator

PyPI version

Test

Folder Tree Generator is a Python module that takes a folder path and outputs a text representation of the folders and files. 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

Why?

I needed a way to generate folder structures in a standard text format that I could copy and paste into GPT without including all the build artifacts, eg. repository structures for code analysis. If you wanted to make your own ignore file it should be a simple adapation of a gitignore file, in 90% of my use cases, the gitignore is sufficient.

Installation

You can install the module from PyPI using pip:

pip install folder-tree-generator

or via Poetry:

poetry add folder-tree-generator

Usage

You can use the module as a command-line tool or import it in your Python script.

Command-line usage

python -m folder_tree_generator/folder_tree_generator /path/to/your/folder

Python script usage

from folder_tree_generator import generate_tree

output_text = generate_tree("/path/to/your/folder")
print(output_text)

Configuration

By default, the module looks for a .gitignore file in the root folder to determine which files and folders to ignore. 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_name=".myignore")

Optional Parameters

  • --report_file_path: The name of the report file. Defaults to report.txt if 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.

Development

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 install

To run the tests, use the following command:

poetry run pytest

Checking Test Coverage

This project uses the coverage package to generate test coverage reports. Here's how to use it:

  1. First, you need to install the coverage package if it's not already installed.
pip install coverage

or

poetry add coverage

If you're using Poetry, you can also add coverage to your pyproject.toml file and run poetry install to install it.

  1. After installing coverage, you can use it to run your tests and collect coverage data. If you're using pytest for testing, you can use the following command:
coverage run -m pytest

This command tells coverage to run pytest as a module (hence the -m flag), and coverage collects data about which parts of your code were executed during the test run.

  1. Once you've collected coverage data, you can generate a report by running:
coverage report

This will print a coverage report to the terminal, showing the code coverage for each module in your project.

  1. If you want a more detailed view, you can generate an HTML report using:
coverage html

This 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.

  1. If you're finished checking coverage and want to clear the collected data, you can use the command:
coverage erase

This 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.

Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue on the GitHub repository.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

folder_tree_generator-0.1.12.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

folder_tree_generator-0.1.12-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page