Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 838 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 838 Bytes

GenPass CLI

A simple yet powerful command-line password generator.

Features

  • Generate secure passwords with customizable options
  • Copy passwords directly to clipboard
  • Specify password length
  • Include/exclude special characters, numbers, and uppercase letters
  • Quiet mode for scripting

Installation

pip install genpass-cli

Usage

Basic usage:

genpass

# Generate a longer password
genpass -l 16

# Generate password without special characters
genpass --no-special

# Generate and copy to clipboard
genpass -c

# Quiet mode (only output password)
genpass -q

Examples

# Generate a 20-character password with all character types
genpass -l 20

# Generate a simple password (only letters and numbers)
genpass --no-special

# Generate and copy to clipboard silently
genpass -q -c