Metadata-Version: 2.1
Name: py3whoisxm1
Version: 1.2
Summary: A wrapper for the WhoisXML API service
Home-page: https://github.com/VarthanV/pywhoisxml
Author: Vishnu Varthan Rao
Author-email: vishnulatha006@gmail.com
License: MIT License
Description: ### pywhoisxml
        
        This Library is a wrapper for  [Whois Xml](https://www.whoisxmlapi.com/ "Whois Xml")   
        api service . It offers many helper methods to get the commonly used data's easily.
        ## Installation
        
        ### From PyPI
        
        ```bash
        pip install py3whoisxml
        ```
        ### Whois Lookup Usage
        
        
        ```python
        from pywhoisxml.lookup import Lookup
        l =Lookup('<API KEY>','vishnurao.tech')
        print(l.is_available)
        #Returns False as the Domain is Unavailable 
        print(l.data)
        # Returns the JSON Response Received from the API
        print(l.balance)
        #Returns the balance no if requests you can make to the API 
        #Eg : 498
        ```
        
        ## Email Verification API
        
        ```python
        from pywhoisxml.email_verification import  EmailVerification
        e =EmailVerification('<API KEY>','test@gmail.com')
        print(e.format_check)
        #Returns whether the above check is passed
        
        ```
        
        ## IP Geolocation API
        
        ```python
        from pywhoisxml.ip_geo import IpGeo
         e =IpGeo('<API KEY>',  '<IP> ')
         print(e.region)
        # Returns the region of the IP
        print(e.country)
        # Returns the Country of the  IP
        
        ```
        
        
        
        
Keywords: pywhoisxml,whoisxml,iplookup,ip,geoip,domain reputation,website screenshot,lookup
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
