• v0.1.0 89ae71c212

    v0.1.0
    Some checks failed
    CI / test (push) Failing after 9s
    CI / build (push) Has been skipped
    Stable

    7000pctAUTO released this 2026-02-02 06:30:47 +00:00 | 21 commits to main since this release

    Initial release of Regex Humanizer CLI

    A CLI tool that converts complex regular expressions into human-readable plain English descriptions.

    Features

    • Regex to English conversion
    • Example match generation
    • Bidirectional conversion (English to regex)
    • Multiple regex flavor support (PCRE, JavaScript, Python, Go)
    • Interactive pattern builder wizard

    Installation

    pip install regex-humanizer
    

    Usage

    regex-humanizer explain "^\w+@\w+\.\w+$"
    regex-humanizer generate "\d{3}-\d{4}"
    regex-humanizer from-english "a digit followed by a letter"
    regex-humanizer build
    
    Downloads