Skip to main content

A package to list and document the contents of codebases, optionally using .gitignore rules.

Project description

PyPI version License: MIT Downloads

CodebaseLister

CodebaseLister is a Python package designed to document the contents of codebases. It lists all files and their contents, taking into account .gitignore rules if required. This tool is useful for developers who need a comprehensive overview of their project's structure and files.

Installation

To install CodebaseLister, you can use pip:

pip install CodebaseLister

Usage

As a Python Module

You can use CodebaseLister as a module in your Python scripts.

Example:

from codebaselister import CodebaseLister

# Initialize CodebaseLister with optional parameters
lister = CodebaseLister(base_path='path_to_your_project', use_gitignore=True)

# Generate the listing file
listing_details = lister.generate_listing_file()
print(listing_details)

Customizing Your Listing

You can customize the listing by adjusting the initialization parameters of the CodebaseLister class, such as base_path, use_gitignore, and output_filename, to fit the specific needs of your project.

Output Example

When you run CodebaseLister, it creates a text file listing all the files in the specified path (excluding those ignored by .gitignore if enabled) along with their contents. Here's an example of the output details:

{
    "output_filename": "listing_20240113_150223.txt",
    "chars_count": 12345,
    "file_size": 0.5,  # Size in MB
    "files_count": 100
}

Contributing

Contributions, issues, and feature requests are welcome! Feel free to check issues page.

License

MIT

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

CodebaseLister-0.0.2.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

CodebaseLister-0.0.2-py3-none-any.whl (4.1 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