All Projects → rthalley → Dnspython

rthalley / Dnspython

Licence: other
a powerful DNS toolkit for python

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to Dnspython

dns-resolver-infra
Privacy DNS infrastructure
Stars: ✭ 39 (-97.88%)
Mutual labels:  dns, dnssec, dns-over-https, dns-over-tls
jp.tiar.app
jp.tiar.app
Stars: ✭ 28 (-98.48%)
Mutual labels:  dnssec, dns-over-https, dns-over-tls
aiodns
A All-In-One DNS Solution written in Go
Stars: ✭ 23 (-98.75%)
Mutual labels:  dns, dns-over-https, dns-over-tls
Smartdns
A local DNS server to obtain the fastest website IP for the best Internet experience, 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验。
Stars: ✭ 4,333 (+135.75%)
Mutual labels:  dns, dns-over-https, dns-over-tls
python-socks
Core proxy client (SOCKS4, SOCKS5, HTTP) functionality for Python
Stars: ✭ 40 (-97.82%)
Mutual labels:  asyncio, curio, trio
dnsredir
Yet another seems better forward/proxy plugin for CoreDNS
Stars: ✭ 58 (-96.84%)
Mutual labels:  dns, dns-over-https, dns-over-tls
powerdns
PowerDNS dnsdist, recursor, authoritative, and admin interface. Supports DNSCrypt, DoH, and DoT.
Stars: ✭ 35 (-98.1%)
Mutual labels:  dns, dns-over-https, dns-over-tls
AdGuard-WireGuard-Unbound-Cloudflare
The Ultimate Network Security Guide 🔒 Protection | 🔎 Privacy | 🚀 Performance on home network 24/7 🕛 Accessible anywhere 🌏
Stars: ✭ 160 (-91.29%)
Mutual labels:  dns, dns-over-https, dns-over-tls
dns.sb
https://dns.sb/
Stars: ✭ 32 (-98.26%)
Mutual labels:  dns, dns-over-https, dns-over-tls
Ldns
LDNS is a DNS library that facilitates DNS tool programming
Stars: ✭ 127 (-93.09%)
Mutual labels:  dns, dnssec
Aiodns
Simple DNS resolver for asyncio
Stars: ✭ 370 (-79.87%)
Mutual labels:  asyncio, dns
Dnscrypt Server Docker
A Docker image for a non-censoring, non-logging, DNSSEC-capable, DNSCrypt-enabled DNS resolver
Stars: ✭ 483 (-73.72%)
Mutual labels:  dns, dnssec
Dt
DNS tool - display information about your domain
Stars: ✭ 313 (-82.97%)
Mutual labels:  dns, dnssec
Zonemaster
The Zonemaster Project
Stars: ✭ 282 (-84.66%)
Mutual labels:  dns, dnssec
Sdns
Privacy important, fast, recursive dns resolver server with dnssec support
Stars: ✭ 658 (-64.2%)
Mutual labels:  dns, dnssec
Dns
DNS library in Go
Stars: ✭ 5,944 (+223.39%)
Mutual labels:  dns, dnssec
resolve
Command line iterative DNS resolution testing program
Stars: ✭ 17 (-99.08%)
Mutual labels:  dns, dnssec
Bugcrowd Levelup Subdomain Enumeration
This repository contains all the material from the talk "Esoteric sub-domain enumeration techniques" given at Bugcrowd LevelUp 2017 virtual conference
Stars: ✭ 513 (-72.09%)
Mutual labels:  dns, dnssec
Dank Selfhosted
Automated solution for hosting email, web, DNS, XMPP, and ZNC on OpenBSD.
Stars: ✭ 800 (-56.47%)
Mutual labels:  dns, dnssec
Desec Stack
Backbone of the deSEC.io Free Secure DNS Hosting Service
Stars: ✭ 130 (-92.93%)
Mutual labels:  dns, dnssec

dnspython

Build Status Documentation Status PyPI version License: ISC

INTRODUCTION

dnspython is a DNS toolkit for Python. It supports almost all record types. It can be used for queries, zone transfers, and dynamic updates. It supports TSIG authenticated messages and EDNS0.

dnspython provides both high and low level access to DNS. The high level classes perform queries for data of a given name, type, and class, and return an answer set. The low level classes allow direct manipulation of DNS zones, messages, names, and records.

To see a few of the ways dnspython can be used, look in the examples/ directory.

dnspython is a utility to work with DNS, /etc/hosts is thus not used. For simple forward DNS lookups, it's better to use socket.getaddrinfo() or socket.gethostbyname().

dnspython originated at Nominum where it was developed to facilitate the testing of DNS software.

ABOUT THIS RELEASE

This is the development version of dnspython 2.2.0. Please read What's New for information about the changes in this release.

INSTALLATION

  • Many distributions have dnspython packaged for you, so you should check there first.
  • If you have pip installed, you can do pip install dnspython
  • If not just download the source file and unzip it, then run sudo python setup.py install
  • To install the latest from the master branch, run pip install git+https://github.com/rthalley/dnspython.git

Dnspython's default installation does not depend on any modules other than those in the Python standard library. To use some features, additional modules must be installed. For convenience, pip options are defined for the requirements.

If you want to use DNS-over-HTTPS, run pip install dnspython[doh].

If you want to use DNSSEC functionality, run pip install dnspython[dnssec].

If you want to use internationalized domain names (IDNA) functionality, you must run pip install dnspython[idna]

If you want to use the Trio asynchronous I/O package, run pip install dnspython[trio].

If you want to use the Curio asynchronous I/O package, run pip install dnspython[curio].

If you want to use WMI on Windows to determine the active DNS settings instead of the default registry scanning method, run pip install dnspython[wmi].

Note that you can install any combination of the above, e.g.: pip install dnspython[doh,dnssec,idna]

Notices

Python 2.x support ended with the release of 1.16.0. dnspython 2.0.0 and later only support Python 3.6 and later.

Documentation has moved to dnspython.readthedocs.io.

The ChangeLog has been discontinued. Please see the git history for detailed change information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].