Skip to content

Releases: bachdev/domex

Domex v1.0.0

17 Jan 18:06

Choose a tag to compare

Domex v1.0.0 - Initial Release

Domain availability checker using regex patterns with HTTP proxy support.

Features

  • 🔍 Check domain availability using regex patterns
  • ⚡ Configurable rate limiting (default: 5 req/s)
  • 🌐 HTTP proxy support with auto-rotation
  • 📁 Export available domains to file
  • 🎯 RDAP API for reliable WHOIS lookups

Installation

pip install -r requirements.txt

Quick Start

# Check 2-letter + 3-digit domains
python domex.py "^[a-z]{2}[0-9]{3}\.(com|net)$"

# With output file
python domex.py "^[a-z]{3}\.com$" --output available.txt

Supported TLDs

com, net, org, info, biz, io, co, me, tv

See README.md for full documentation.