Metadata-Version: 2.3
Name: longstrings
Version: 0.1.4
Summary: Find long string comments in Python code
Author: Jeff Glass
Author-email: Jeff Glass <glass.jeffrey@gmail.com>
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Documentation
Requires-Python: >=3.12
Project-URL: Repository, https://github.com/jeffersglass/longstrings.git
Description-Content-Type: text/markdown

Find long comments and docstrings in a Python codebase.

In new and quickly-evovling projects, documentation often ends up in comments and docstrings rather than in formal docs. `longstrings` is a command line utility to find and emit these long comments for perusal.

## Usage

```sh
usage: longstrings.exe [-h] [--min-length MIN_LENGTH] path

positional arguments:
  path                  Path to the file or directory

options:
  -h, --help            show this help message and exit
  --min-length MIN_LENGTH
                        How many characters does a comment have to be before it's considered 'long'
```

## Examples

```sh
uvx longstrings ~/somefile.py
```

```sh
uvx longstrings ~/some_codebase/some_module --min-length 500
```
