aiodns
Simple DNS resolver for asyncio
What it is and what it does
aiodns wraps pycares to provide asynchronous DNS resolution within asyncio applications. Instead of blocking on DNS lookups, it returns futures that resolve when the DNS query completes, allowing your event loop to handle other work concurrently. The main API is the DNSResolver class, which offers methods like query_dns() for standard lookups, gethostbyaddr() for reverse lookups, getaddrinfo() for socket-style resolution, and getnameinfo() for address-to-hostname conversion.
The package supports a wide range of DNS record types (A, AAAA, MX, CNAME, TXT, SRV, NS, SOA, CAA, NAPTR, PTR, ANY) and returns results as pycares DNSResult objects with answer, authority, and additional sections. Version 4.x introduced a new query_dns() method returning native pycares types; the older query() method remains for backward compatibility but is deprecated. The resolver is designed to be long-lived and reused across many queries rather than created and destroyed frequently.
Use it for:
- Resolve hostnames to IP addresses asynchronously in web servers or network clients without blocking the event loop.
- Perform bulk DNS lookups (MX, TXT, CNAME records) in background tasks or monitoring tools.
- Implement reverse DNS lookups (gethostbyaddr) in logging or security audit systems.
- Build DNS-aware service discovery or load balancing logic that queries multiple record types.
- Test DNS resolution behavior in asyncio-based test suites using the async context manager pattern.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides asynchronous DNS resolution for asyncio applications using the pycares library, supporting query types including A, AAAA, MX, CNAME, TXT, and others.
Yes. aiodns is a stable, actively maintained package (Production/Stable status, recent release, 594 GitHub stars) with low install friction and no known vulnerabilities. It fills a clear need for non-blocking DNS in asyncio applications. The MIT license is permissive. Install it if you need asynchronous DNS resolution in an asyncio codebase; the single dependency (pycares) is well-established. Avoid only if you have no asyncio requirement or prefer the standard library's synchronous socket.getaddrinfo().
Install
aiodns on PyPI
pip
pip install aiodnsuv
uv add aiodnspoetry
poetry add aiodnsInstalling aiodns
Before you install
Low install friction with a single runtime dependency (pycares). Active maintenance with a recent release 86 days ago; supports current Python versions (3.10–3.14). Repository shows 594 stars and ongoing development.
License in practice
MIT license (permissive) allows commercial and private use with minimal restrictions.
Quickstart
import asyncio
import aiodns
async def main():
resolver = aiodns.DNSResolver()
result = await resolver.query_dns('example.com', 'A')
for record in result.answer:
print(record.data.addr)
asyncio.run(main())
Requires Python 3.10 or later; on Windows with custom non-thread-safe pycares builds, requires asyncio.SelectorEventLoop or winloop instead of ProactorEventLoop.
Verify before relying
- Whether the Windows event loop limitation (ProactorEventLoop incompatibility with non-thread-safe c-ares) affects prebuilt pycares wheels in practice.
- Performance characteristics and typical query latency compared to synchronous DNS resolution.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — pycares |
| Maintenance | actively maintained — 86 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 20,518,305/month — #1,034 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: aiodns-4.0.4-py3-none-any.whl
Tags
More Networking packages
h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
psutilpsutil retrieves real-time information about…
permissive · top 1,000 on PyPI
pyOpenSSLpyOpenSSL wraps OpenSSL's SSL/TLS functionality…
permissive · top 1,000 on PyPI
uvloopuvloop is a drop-in replacement for Python's…
permissive · top 1,000 on PyPI
execnetexecnet lets you spawn and communicate with…
permissive · top 1,000 on PyPI
pyzmqPyZMQ provides Python bindings for ZeroMQ…
permissive · top 1,000 on PyPI
pycarespycares provides a Python interface to c-ares,…
permissive · top 5,000 on PyPI
aiohttp-asyncmdnsresolverProvides an async resolver for aiohttp that…
permissive · top 15,000 on PyPI
nslookupProvides high-level DNS lookups (A, AAAA, and…
copyleft · top 15,000 on PyPI
aiodiscoverDiscovers hosts on a local network by…
permissive · top 15,000 on PyPI
dnspythondnspython is a DNS toolkit that handles…
permissive · top 1,000 on PyPI
dnslibEncodes and decodes DNS wire-format packets,…
permissive · top 5,000 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
kubernetes-asyncioAsynchronous Python client for the Kubernetes…
permissive · top 5,000 on PyPI
dns-lexicondns-lexicon provides a unified Python interface…
permissive · top 15,000 on PyPI