| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
python_treeLsCat is a lightweight Python utility designed to crawl a project directory, generate a visual folder structure (tree), and consolidate the content of all text-based files into a single output file.
It is specifically built to respect .gitignore rules and automatically skip binary files, making it perfect for preparing codebases for LLM analysis (ChatGPT/Claude) or quick code audits.
git clone git@github.com:mamba73/python_treeLsCat.git
cd python_treeLsCatpip install pathspecpython python_treeLsCat.py[SETTINGS]
PATH = C:\Path\To\Your\Project
SAVE = project_summary.txtThe generated file will look like this:
PROJECT STRUCTURE: MyProject
------------------------------
├─ src/
│ ├─ main.py
│ └─ utils.py
├─ .gitignore
└─ README.md
============================================================
src/main.py
---
[File Content Here]
---
---
README.md
---
[File Content Here]
---
---
This project is open-source and available under the MIT License.
Developed by mamba73. Feel free to submit issues or pull requests!
| Back | FazBrowse Home | New Git URL |