šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

dir2text

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dir2text

A Python library and command-line tool for expressing directory structures and file contents in formats suitable for Large Language Models (LLMs). It combines directory tree visualization with file contents in a memory-efficient, streaming format.

2.0.0
PyPI
Maintainers
1

dir2text

A Python library and command-line tool for expressing directory structures and file contents in formats suitable for Large Language Models (LLMs). It combines directory tree visualization with file contents in a memory-efficient, streaming format.

Features

  • Tree-style directory structure visualization
  • Complete file contents with proper escaping
  • Memory-efficient streaming processing
  • Multiple output formats (XML, JSON)
  • Easy extensibility for new formats
  • Support for exclusion patterns (e.g., .gitignore rules)
  • Proper symbolic link handling and loop detection
  • Optional token counting for LLM context management
  • Summary reporting with configurable output destination
  • Safe handling of large files and directories

Installation

This project uses Poetry for dependency management. We recommend using Poetry for the best development experience, but we also provide traditional pip installation.

  • First, install Poetry if you haven't already.
  • Install dir2text:
    poetry add dir2text
    

Using pip

pip install dir2text

Optional Features

Install with token counting support (for LLM context management):

# With Poetry
poetry add "dir2text[token_counting]"

# With pip
pip install "dir2text[token_counting]"

Note: The token_counting feature requires the tiktoken package, which needs a Rust compiler (e.g., rustc) and Cargo to be available during installation.

Usage

Command Line Interface

Basic usage:

dir2text /path/to/project

# Show version information
dir2text --version

# Exclude files matching patterns from one or more exclusion files
dir2text -e .gitignore /path/to/project
dir2text -e .gitignore -e .npmignore -e custom-ignore /path/to/project

# Exclude files with direct patterns
dir2text -i "*.pyc" -i "node_modules/" /path/to/project

# Enable token counting for LLM context management
dir2text -t gpt-4 /path/to/project

# Generate JSON output and save to file
dir2text -f json -o output.json /path/to/project

# Follow symbolic links
dir2text -L /path/to/project

# Skip tree or content sections
dir2text -T /path/to/project     # Skip tree visualization
dir2text -C /path/to/project     # Skip file contents

By default, symbolic links are represented as symlinks without following them:

dir2text /path/to/project

This shows symlinks clearly marked with their targets in the tree output, and as separate elements in content output.

To follow symbolic links during traversal (similar to Unix find -L):

dir2text -L /path/to/project

This includes the content that symlinks point to, while still protecting against symlink loops.

Summary Reporting

Dir2text can generate a summary describing the processed directory including file counts, line counts, and optionally token counts. You can control where this information is displayed:

# Print summary to stderr
dir2text -s stderr /path/to/project

# Print summary to stdout
dir2text -s stdout /path/to/project

# Include summary in the output file
dir2text -s file -o output.txt /path/to/project

# Include token counts in summary by specifying a tokenizer model
dir2text -s stderr -t gpt-4 /path/to/project

Summary includes counts of directories, files, symlinks, lines, and characters. Token counts are only included when a tokenizer model is specified with the -t option.

Python API

Basic usage:

from dir2text import StreamingDir2Text
from dir2text.exclusion_rules.git_rules import GitIgnoreExclusionRules

# Create exclusion rules (optional)
rules = GitIgnoreExclusionRules()
rules.add_rule("*.pyc")  # Add rules directly
# OR load from files
rules.load_rules(".gitignore")

# Initialize the analyzer
analyzer = StreamingDir2Text("path/to/project", exclusion_rules=rules)

# Stream the directory tree
for line in analyzer.stream_tree():
    print(line, end='')

# Stream file contents
for chunk in analyzer.stream_contents():
    print(chunk, end='')

# Get metrics
print(f"Processed {analyzer.file_count} files in {analyzer.directory_count} directories")
print(f"Found {analyzer.symlink_count} symbolic links")

Memory-efficient processing with token counting:

from dir2text import StreamingDir2Text
from dir2text.exclusion_rules.git_rules import GitIgnoreExclusionRules

# Create exclusion rules from multiple files
rules = GitIgnoreExclusionRules()
rules.load_rules(".gitignore")
rules.load_rules(".npmignore")
rules.add_rule("custom.ignore")

# Initialize with options
analyzer = StreamingDir2Text(
    directory="path/to/project",
    exclusion_rules=rules,
    output_format="json",
    tokenizer_model="gpt-4",
    follow_symlinks=False  # Default behavior, don't follow symlinks
)

# Process content incrementally
with open("output.json", "w") as f:
    for line in analyzer.stream_tree():
        f.write(line)
    for chunk in analyzer.stream_contents():
        f.write(chunk)

# Print statistics
print(f"Files: {analyzer.file_count}")
print(f"Directories: {analyzer.directory_count}")
print(f"Symlinks: {analyzer.symlink_count}")
print(f"Lines: {analyzer.line_count}")
print(f"Tokens: {analyzer.token_count}")
print(f"Characters: {analyzer.character_count}")

Immediate processing (for smaller directories):

from dir2text import Dir2Text
from dir2text.exclusion_rules.git_rules import GitIgnoreExclusionRules

# Create exclusion rules
rules = GitIgnoreExclusionRules()
rules.load_rules(".gitignore")

# Process everything immediately
analyzer = Dir2Text(
    "path/to/project", 
    exclusion_rules=rules,
    follow_symlinks=True  # Optionally follow symlinks
)

# Access complete content
print(analyzer.tree_string)
print(analyzer.content_string)

Output Formats

XML Format

<file path="relative/path/to/file.py" tokens="150">
def example():
    print("Hello, world!")
</file>
<symlink path="docs/api.md" target="../README.md" />

JSON Format

{
  "type": "file",
  "path": "relative/path/to/file.py",
  "content": "def example():\n    print(\"Hello, world!\")",
  "tokens": 150
}
{
  "type": "symlink",
  "path": "docs/api.md",
  "target": "../README.md"
}

Signal Handling

When using dir2text as a command-line tool, it handles system signals gracefully to ensure proper resource management and clean exits:

  • SIGPIPE: When piping output to programs like head, less, or grep that may terminate before reading all input, dir2text detects the closed pipe and exits cleanly without error messages.
  • SIGINT (Ctrl+C): Properly handles user interruption, ensuring all resources are cleaned up.

This means you can safely pipe dir2text output to other commands without worrying about error messages when those commands exit:

# The first 10 lines of output
dir2text /path/to/project | head -n 10

# Only files containing "function"
dir2text /path/to/project | grep "function"

Development

Setup Development Environment

  • Clone the repository:

    git clone https://github.com/rlichtenwalter/dir2text.git
    cd dir2text
    
  • Install development dependencies:

    poetry install --with dev
    
  • Install pre-commit hooks:

    poetry run pre-commit install
    

Running Tests

# Run specific quality control categories
poetry run tox -e format    # Run formatters
poetry run tox -e lint      # Run linters
poetry run tox -e test      # Run tests
poetry run tox -e coverage  # Run test coverage analysis

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  • Fork the repository
  • Create a new branch (git checkout -b feature/amazing-feature)
  • Make your changes
  • Run the test suite
  • Commit your changes (git commit -m 'Add some amazing feature')
  • Push to the branch (git push origin feature/amazing-feature)
  • Open a Pull Request

License

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

Acknowledgments

  • This project uses anytree for tree data structures
  • .gitignore pattern matching uses pathspec
  • Token counting functionality is provided by OpenAI's tiktoken

Requirements

  • Python 3.9+
  • Poetry (recommended) or pip
  • Optional: Rust compiler and Cargo (for token counting feature)

Project Status

This project is actively maintained. Issues and pull requests are welcome.

FAQ

Q: Why use streaming processing?
A: Streaming allows processing of large directories and files with constant memory usage, making it suitable for processing repositories of any size.

Q: How does dir2text handle symbolic links?
A: By default, dir2text represents symlinks as symbolic links in both tree and content output without following them. With the -L option, it follows symlinks similar to Unix tools like find -L. In both modes, symlink loop detection prevents infinite recursion.

Q: Can I use this with binary files?
A: The tool is designed for text files. Binary files should be excluded using the exclusion rules feature.

Q: What models are supported for token counting?
A: The token counting feature uses OpenAI's tiktoken library with the following primary models and encodings:

  • cl100k_base encoding:
    • GPT-4 models (gpt-4, gpt-4-32k)
    • GPT-3.5-Turbo models (gpt-3.5-turbo)
  • p50k_base encoding:
    • Text Davinci models (text-davinci-003)

For other language models, using a similar model's tokenizer (like gpt-4) can provide useful approximations of token counts. While the counts may not exactly match your target model's tokenization, they can give a good general estimate. The default model is "gpt-4", which uses cl100k_base encoding and provides a good general-purpose tokenization.

Q: What happens if I specify a model that doesn't have a dedicated tokenizer?
A: The library will suggest using a well-supported model like 'gpt-4' or 'text-davinci-003' for token counting. While token counts may not exactly match your target model, they can provide useful approximations for most modern language models.

Q: How can I control where summary information is displayed?
A: Use the -s/--summary option to control where summary information is displayed:

  • -s stderr: Print summary to stderr
  • -s stdout: Print summary to stdout
  • -s file: Include summary in the output file (requires -o)

Q: Is token counting required for summary reporting?
A: No. Basic statistics (e.g., file count, directory count, etc.,) are available without token counting. Including token counts in summary requires the -t/--tokenizer option to be specified along with -s/--summary.

Contact

Ryan N. Lichtenwalter - rlichtenwalter@gmail.com

Project Link: https://github.com/rlichtenwalter/dir2text

Keywords

large language model

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts