Simple Domain Name Availability Checking Using Python

Asnim
1 min readJan 7, 2017

--

You might have experienced a situation in which you have to stumble upon through lots of names for your website but not getting any +ve results regarding the availability of websites. I have made a simple python code which checks the whois record for domain name availability and stores the list of available domains in another text file. Though i am not sure whether this if this is a highly optimised one, i am interested in sharing with this you.

Pre Requisites: python-whois package which u can install using
pip install python-whois

Feed a list of domains you want to check in domain_check_list

--

--