A tree view command-line utility that filters files/folders based on a .gitignore
Project description
TreeIgnore
TreeIgnore is a Python command-line utility that prints a tree-style view of the current directory while ignoring files and folders specified in a .gitignore file located at the base folder.
Features
- Recursive Listing: Displays the directory tree recursively.
- Gitignore Filtering: Reads the
.gitignorefile from the base folder to filter out files and folders. - Easy to Use: A simple command-line tool that can be executed from any directory.
- AI-Friendly Output: Perfect for AI tools and LLMs by providing clean project structure without noise from build artifacts, dependencies, or cache files that would unnecessarily consume context windows.
Why TreeIgnore?
TreeIgnore is particularly valuable when working with AI tools and Large Language Models (LLMs). By respecting .gitignore patterns, it provides a clean, focused view of your project's actual source code and important files, filtering out:
- Build artifacts and cache directories
- Dependencies and virtual environments
- IDE configuration files
- System-specific files
This focused output helps prevent context window bloat when sharing project structures with AI tools, ensuring they can focus on the relevant code and documentation rather than getting distracted by temporary or generated files.
Installation
Install from PyPI:
pip install treeignore
For development, install directly from the repository:
git clone https://gitlab.com/CochainComplex/treeignore.git
cd treeignore
pip install -e .
Usage
Navigate to the base folder (the folder containing your .gitignore file) and run:
treeignore
The tool will display a tree-style view of your directory, filtering out any files or folders that match the patterns in the .gitignore.
Example Comparison
Here's how a typical Python project looks with the standard tree command:
myproject/
├── .git/
│ ├── HEAD
│ ├── config
│ └── ... (many more files)
├── .pytest_cache/
│ └── ... (cache files)
├── __pycache__/
│ └── main.cpython-39.pyc
├── venv/
│ ├── bin/
│ ├── lib/
│ └── ... (hundreds of files)
├── .gitignore
├── main.py
├── requirements.txt
└── tests/
├── __pycache__/
│ └── test_main.cpython-39-pytest.pyc
└── test_main.py
And here's the same project with treeignore:
myproject/
├── .gitignore
├── main.py
├── requirements.txt
└── tests/
└── test_main.py
As you can see, treeignore provides a clean view focusing only on the essential project files, making it perfect for documentation, project sharing, and AI tool interactions.
Development
This project uses modern Python tooling:
blackfor code formattingisortfor import sortingmypyfor type checking
To set up the development environment:
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install development dependencies:
pip install -e ".[dev]"
- Build the package:
python -m build
- Run tests:
python -m pytest
Publishing to PyPI
- Build the distribution:
python -m build
- Upload to PyPI:
python -m twine upload dist/*
Contributing
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Author
Alexander Warth - warth.ai
Links
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file treeignore-0.4.1.tar.gz.
File metadata
- Download URL: treeignore-0.4.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b756f3a81f4736de1ce62c1fceffc9885b734eed5fb73e0acc42b3329801f8e1
|
|
| MD5 |
f7ce32d176c4a85415be8ca5e0213cf1
|
|
| BLAKE2b-256 |
2b81558c13b745067859a64752147f4a985824ce1852448b0a3874cdbf5582b6
|
File details
Details for the file treeignore-0.4.1-py3-none-any.whl.
File metadata
- Download URL: treeignore-0.4.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dbf0a8c2f9455712ee48fb638e08573477ec8cdc742e9c9601d69d0d84752d6
|
|
| MD5 |
bbaed05b733adb9cfcd92045bb83b915
|
|
| BLAKE2b-256 |
c56abce8261e703fd8a081f0f7c054fabd51ce16a2ff67bbf5dc09e536c2cd5f
|