Skip to main content

A small package for checking the client's dns resulotion for A records

Project description

DNSLookup

The DNSLookup module provides a simple interface for performing DNS lookups in Python. It allows you to easily retrieve the IP addresses associated with a given domain name.

Installation

To install the DNSLookup module, simply clone the repository and run the following command:

git clone https://github.com/melihteke/dnslookup-module.git

Usage

Here's an example of how to use the DNSLookup module to perform a DNS lookup:

pip install dnslookup-module
(.venv) MTeke1@APKM2W42362BA4 dnslookup-module % ipython
Python 3.8.9 (default, Apr 13 2022, 08:48:06) 
Type 'copyright', 'credits' or 'license' for more information
IPython 8.12.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: from dnslookup import DNSLookup

In [2]: query = DNSLookup(domain="www.mteke.com")

In [3]: query.get_ip()
Out[3]: ['81.129.175.158']

In [4]: 

API Reference

DNSLookup

The DNSLookup class represents a DNS lookup object.

Constructor

init(self, domain: str) -> None Creates a new DNSLookup object for performing DNS lookups.

Arguments

domain (str): The domain name to look up.

Methods

get_ip(self) -> List[str] Performs a DNS lookup and returns the IP address(es) associated with the domain.

Returns

list (str): A list of IP addresses associated with the domain. Raises socket.gaierror: If the DNS lookup fails.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dnslookup-module-1.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

dnslookup_module-1.0.0-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page