Overview
The "Python Dictionary Domain Checker" is a Python script designed to read a list of words from a text file, check each word for specific Turkish characters or special characters, perform a WHOIS query on the remaining words, and log the available '.com' domain names into a CSV file. This tool is particularly useful for identifying available domain names from a large list of potential names.Features
- Turkish Character Filtering: Filters out words that contain specific Turkish characters or special characters like 'ç', 'ğ', 'ı', 'ö', 'ş', 'ü', 'â', ' ', and '/'.
- WHOIS Query: Performs a WHOIS query on each word to check if the corresponding '.com' domain is available.
- CSV Logging: Logs available domain names into a CSV file for easy reference and further processing.
Prerequisites
- Python 3.x
- whois Python library (can be installed via pip)
Installation
Before running the script, ensure you have Python installed on your system. You also need to install the whois library, which can be done using pip:
Code:
pip install python-whois
It relies on the WHOIS service, which may have rate limits or access restrictions.