Metadata-Version: 1.1
Name: querycontacts
Version: 0.2.1
Summary: Query network abuse contacts on the command-line for a given ip address on abuse-contacts.abusix.org
Home-page: http://abusix.com/global-reporting/abuse-contact-db
Author: abusix GmbH
Author-email: info@abusix.com
License: GNU General Public License v3 (GPLv3)
Description: Usage
        -----
        
        ::
        
            usage: querycontacts [-h] [--provider PROVIDER] [--version] ip
        
            QueryContact - Find the Abuse contact for a IP address
        
            positional arguments:
            ip                   query network abuse contacts for a given ip address
        
            optional arguments:
            -h, --help           show this help message and exit
            --provider PROVIDER  change standard network abuse contacts provider.
                                Defaults to abuse-contacts.abusix.org
            --version            show program's version number and exit
        
        
        Example
        -------
        
        ::
        
            >>> from querycontacts import ContactFinder
            >>> qf = ContactFinder()
            >>> qf.find('127.0.0.2')
            ['root@localhost', 'abuse@localhost']
        
            >>> qf.find('::ffff:7f00:2')
            ['root@localhost']
        
        
        Installation
        ------------
        
        ::
        
            pip install querycontacts
        
        API
        ---
        
        You can find the current API documentation `here <http://abusix.github.io/querycontacts/>`_
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Customer Service
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Security
