Skip to content

Sensible high-level DNS lookups in Python, using dnspython dns.resolver, code adopted from XN-Twist

License

Notifications You must be signed in to change notification settings

reedmideke/pynslookup

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyNslookup

PyPi package

Sensible high-level DNS lookups in Python, using dnspython dns.resolver, code adopted from XN-Twist

The main purpose and uses of this library:

  • A record lookups (typical DNS queries)
  • SOA lookups

Returns an object containing two arrays:

  • response_full: the full DNS response string(s)
  • answer: the parsed DNS answer (list of IPs or SOA string)

Usage

from nslookup import Nslookup

domain = "example.com"

# set optional Cloudflare public DNS server
dns_query = Nslookup(dns_servers=["1.1.1.1"])

ips_record = dns_query.dns_lookup(domain)
print(ips_record.response_full, ips_record.answer)

soa_record = dns_query.soa_lookup(domain)
print(soa_record.response_full, soa_record.answer)

About

Sensible high-level DNS lookups in Python, using dnspython dns.resolver, code adopted from XN-Twist

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%