Skip to main content

DirPrint: Print your directory structure and file contents with ease.

Project description

Directory Print - DirPrint

Simplify Code Sharing with LLMs by Exporting Directory Structure and File Contents

PyPI Downloads

DirPrint Demo

DirPrint is a command-line tool that streamlines sharing your project's directory structure and file contents with LLMs (like ChatGPT, Claude, etc.). By providing comprehensive context about your codebase, DirPrint enhances LLMs' ability to assist you in debugging and development tasks.

Features

  • Visual Directory Tree: Get a clear, hierarchical representation of your project's structure.
  • File Contents Display: View file contents within the tree, formatted in markdown code blocks.
  • File Export: Save the output to a file for easy sharing and reference.
  • Flexible Content Management:
    • Ignore Mode: Completely hide specified files/directories from the output.
    • Omit Mode: Show files/directories in the directory structure but hide their contents for brevity.
    • Glob Support: Use standard globs (e.g., *.pyc, test_*.js) for flexible matching.
    • GitIgnore Integration: Automatically respects .gitignore rules (unless disabled).
    • Strict Matching: Enable exact matching for file/directory names by wrapping the pattern in carets (^).
  • Optional Line Count Analysis: When enabled, DirPrint calculates and displays the number of lines for each file and directory.

Installation

From source:

git clone https://github.com/zebangeth/DirPrint.git
cd DirPrint
python setup.py install

Via pip:

pip install DirPrint

or

pip install DirPrint==0.3.1

Usage

Basic command structure:

dir_print [options] <directory_path>

Options

  • --export, -E : Save output to a specified file.
  • --ignore, -I : Patterns to completely hide (e.g., __pycache__, .git, node_modules).
  • --omit, -O : Patterns to show in the structure but hide their contents.
  • --no-gitignore : Do not automatically load patterns from .gitignore.
  • --show-omitted-structure, --sos : Show structure of omitted directories.
  • --line-count, -lc : Enable display of line counts and percentages for files/directories.

Strict Matching with Carets (^)

By default, patterns are matched partially (i.e., a pattern will match any file or directory that contains it). To enable strict (exact) matching, wrap the pattern in carets. This applies to both ignore and omit modes. For example:

  • Partial matching (default):

    dir_print MindPlug -I doc .md build
    

    In this case, any file or directory name that contains "build" (such as build_check.py or build.py) will be ignored.

  • Strict matching:

    dir_print MindPlug -I doc .md ^build^
    

    With strict matching, only an entry whose name is exactly build will be ignored.
    Note: Depending on your shell, you might need to escape carets (^) so that they are passed as part of the argument.

Examples

Suppose you have a project directory structure like this:

my-project/
├── src/
│   ├── main.py              # 50 lines
│   ├── utils.py             # 30 lines
│   ├── config.json          # 20 lines
│   └── tests/
│       ├── test_main.py     # 20 lines
│       └── test_utils.py    # 30 lines
└── README.md                # 50 lines
  1. Basic usage - Print everything:

    dir_print src
    
  2. Using ignore - Hide files or directories containing "test":

    dir_print src -I test
    

    This will ignore any file or directory with "test" in its name.

  3. Using omit (partial matching) - Show in the structure but hide contents:

    dir_print src -O config
    

    In this case, both the directory config/ and the file config.json will be omitted because the pattern config matches any entry containing that substring:

    src/
    ├── main.js
    ├── utils.js
    ├── [omitted] config/
    ├── [omitted] config.json
    └── tests/
        ├── main.test.js
        └── utils.test.js
    
    [Contents of files shown except for entries matching "config"...]
    
  4. Using strict matching with carets - Match only the exact name:

    dir_print src -O ^config^
    

    Here, only an entry whose name is exactly config (such as the config/ directory) will be omitted. The file config.json will not be omitted because its name does not exactly equal config. Note: You may need to escape carets depending on your shell.

  5. Showing omitted structure - View the internal structure of omitted items:

    dir_print src -O ^config^ --sos
    
  6. Enable line count analysis - Print structure with line counts and percentages:

    dir_print src --line-count
    

    The output might look like this:

    src/ (150 lines, 100%)
    ├── main.py (50 lines, 33.3%)
    ├── utils.py (30 lines, 20.0%)
    ├── config.json (20 lines, 13.3%)
    └── tests/ (50 lines, 33.3%)
        ├── test_main.py (20 lines, 13.3%)
        └── test_utils.py (30 lines, 20.0%)
    
  7. Combined usage - Multiple patterns, export, and line count analysis:

    dir_print src -I node_modules -O ^config^ test -E output.txt --sos --line-count
    

    In this example:

    • node_modules is ignored using partial matching.
    • ^config^ is strictly omitted (exact match only) so only an entry named exactly config is affected.
    • test is omitted using partial matching.
    • The --line-count flag enables line count statistics for non-ignored and non-omitted entries.

Notes

  • Partial Matching: By default, a pattern matches if it is a substring of the file or directory name (e.g., test matches testing.js or tests/).

  • Glob Matching: Standard shell-style wildcards are supported (e.g., *.log matches error.log, test_*.py matches test_main.py).

  • Strict Matching: Wrap a pattern in carets (e.g., ^build^) to enable exact matching. This ensures the pattern only matches when the file or directory name is an exact match.

  • Ignore patterns take precedence over omit patterns when they overlap.

  • The --sos flag only affects directories marked for omission.

License

Distributed under the MIT License. See LICENSE for more information.

Acknowledgments

  • Inspired by the simplicity and utility of the tree command in Unix-like operating systems.
  • Built with GitHub Copilot, GPT-4-0125-preview, and Claude 3.5 Sonnet.

About the Author

DirPrint was created by zebang.eth, a developer passionate about making development and debugging processes smoother and more intuitive.

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

dirprint-0.3.1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dirprint-0.3.1-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file dirprint-0.3.1.tar.gz.

File metadata

  • Download URL: dirprint-0.3.1.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for dirprint-0.3.1.tar.gz
Algorithm Hash digest
SHA256 db0fdab89d037b2bc1e0fc01dfd79bd9fbba0cfb9d15a544a3f20326d4e0d753
MD5 6f941ffaa604bc6ac2f4a3b02c008484
BLAKE2b-256 2f2a59fbe1403bb414312fbf7182adb7b93b5c28c78eed3bb21c4dc875a7cdb4

See more details on using hashes here.

File details

Details for the file dirprint-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: dirprint-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for dirprint-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0b54a8e913fd017819a29a5a9c1a4c9a8e381f6622c927f84b3f647992d772fe
MD5 cd5c4f9dcf65ebe312f327ee94ecd86f
BLAKE2b-256 a486de5a403aceb1c486df9ccdc2c6b7fcc80381cd9b9d99b6e438a9bf4557d4

See more details on using hashes here.

Supported by

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