Metadata-Version: 2.1
Name: reverse-ip
Version: 1.0.1
Summary: Python client library for Reverse IP/DNS API.
Home-page: https://github.com/whois-api-llc/reverse-ip-py
Author: WHOIS API, Inc
Author-email: support@whoisxmlapi.com
License: MIT
Description: ========
        Overview
        ========
        
        The client library for
        `Reverse IP/DNS API <https://reverse-ip.whoisxmlapi.com/>`_
        in Python language.
        
        The minimum Python version is 3.6.
        
        Installation
        ============
        ::
        
            pip install reverse-ip
        
        Examples
        ========
        
        Full API documentation available `here <https://reverse-ip.whoisxmlapi.com/api/documentation/making-requests>`_
        
        Create a new client
        -------------------
        
        ::
        
            from reverseip import *
        
            client = Client('Your API key')
        
        Make basic requests
        -------------------
        
        ::
        
            # Get parsed records as a model instance.
            result = client.data('8.8.8.8')
            print(result.size)
            for record in result.result:
                print("Domain: {}, visited: {}".format(
                        record.name, record.last_visit))
        
            # Get raw API response
            resp_str = client.raw_data('1.1.1.1')
        
        Advanced usage
        -------------------
        Pagination
        
        
        ::
        
            for response in client.iterate_over('1.1.1.1'):
                # Working with the current page
                print(response.size)
                for record in response.result:
                    print(record.name)
        
        
            # Alternative way
            try:
                response = client.data('1.1.1.1')
                # processing
                # ...
                while response.has_next:
                    response = client.next_page('1.1.1.1', response)
                    # processing
                    # ...
            except ReverseIpApiError as error:
                print(error.message)
        
        
        Get raw data in XML
        
        ::
        
            raw = client.raw_data('1.1.1.1', output_format='xml')
            print(raw)
        
        Changelog
        =========
        
        1.0.1 (2021-04-21)
        ------------------
        README update.
        
        1.0.0 (2021-04-20)
        ------------------
        
        * First release
Keywords: reverse,ip,dns,api,whoisxmlapi
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Provides-Extra: dev
