Metadata-Version: 2.1
Name: pypdns
Version: 2.0.0
Summary: Python API for PDNS.
Home-page: https://github.com/CIRCL/PyPDNS
Author: Raphaël Vinot
Author-email: raphael.vinot@circl.lu
Requires-Python: >=3.8,<4.0
License-File: LICENSE
Requires-Dist: dnspython<3.0.0,>=2.2.1
Requires-Dist: requests-cache<0.10.0,>=0.9.5

Client API for PDNS
===================

Client API to query any Passive DNS implementation following the Passive DNS - Common Output Format.

* https://datatracker.ietf.org/doc/draft-dulaunoy-dnsop-passive-dns-cof/

Example
=======

~~~~
import pypdns
x = pypdns.PyPDNS(basic_auth=('username','yourpassword'))
print (x.query('www.microsoft.com')[0]['rdata'])
~~~~

Passive DNS Services
====================

* (default) [CIRCL Passive DNS](http://www.circl.lu/services/passive-dns/)


