Python DNS Lookup

For work, I need to do a lot of DNS lookups. I would normally run the dig command. But it would be quicker if I could get all in one glance in terminal. So, I created a python script to do DNS lookups. I created it do to the main records I normally look up for a website, A, MX, mail A, NS and TXT records. This is built using the dnspython library. [Read More]
Python