Metadata-Version: 2.1
Name: rkn
Version: 0.1.3
Summary: Check domain/ip address in http://blocklist.rkn.gov.ru database
Home-page: https://bitbucket.org/pi11/rkncheck/
Author: pi11
Author-email: co@defun.co
License: MIT
Platform: UNKNOWN
Requires-Dist: requests
Requires-Dist: antigate
Requires-Dist: pyquery

Description
-----------

This module provide only one function: it check if domain is listed on http://blocklist.rkn.gov.ru
rkn can be obtained directly from PyPI, and can be installed with pip:

    pip install rkn

You need anti-captcha.com API key for using this module.

Example usage:

    >>> from rkn import check_rkn
    >>> result, found_in_reestr = check_rkn.query("domain.name", "YOUR_API_KEY_HERE")
    >>> if found_in_reestr:
    >>>     print (result)



