Skip to content

fantasywastaken/bulk-domain-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Domain Status Checker

This tool is designed to check the registration status of specified domains. It processes a list of domains provided by the user, checking each for its registration status. Developed for educational purposes, this tool can be used for domain research.

Features

  • Indicates whether the domains are available or not.

Installation

To run this script, install the required Python libraries using the following command:

pip install requests

Usage

Fill in the domains list with your domains and run the script. Example usage:

domains = ['domain1.com', 'domain2.com', 'domain3.com']

for domain in domains:
    is_available = check_domain(domain)
    if is_available:
        print(f"{domain}: Available")

Notes

This script is intended for educational and research purposes only. Domain queries are performed via the API of the specified service provider.

WARNING

Use this tool within legal and ethical boundaries. The developer does not accept any responsibility for misuse of this tool.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages