Simple DNS resolver for asyncio
Project description
aiodns provides a simple way for doing asynchronous DNS resolutions with a synchronous looking interface by using pycares.
Usage
Example:
import asyncio import aiodns loop = asyncio.get_event_loop() resolver = aiodns.DNSResolver(loop=loop) f = resolver.query('google.com','A') result = loop.run_until_complete(f) print(result)
The following query types are supported: A, AAAA, CNAME, MX, NAPTR, NS, PTR, SOA, SRV, TXT.
Running the test suite
To run the test suite: python test_aiodns.py
License
aiodns uses the MIT license, check LICENSE file.
Python versions
Python 3.4 is natively supported. Python 3.3 supported using the asyncio package. Older Python versions(2.6 - 3.2) are supported using trollius.
Contributing
If you’d like to contribute, fork the project, make a patch and send a pull request. Have a look at the surrounding code and please, make yours look alike :-)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file aiodns-0.2.0.tar.gz
.
File metadata
- Download URL: aiodns-0.2.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5517af5c61781f78275d4bb8b63adea0aa70a43ba2d86651a08cf99ab0746ff1 |
|
MD5 | a2325581f537a2e1d9bc56f3bb5ea1fa |
|
BLAKE2b-256 | 95ae8f3361b7c547283ebfd1338db36b443d82844acc365fc6dad02108f8fa80 |