DNS over HTTPS based on aiohttp and async_dns
Project description
async-doh
DNS over HTTPS based on aiohttp and async_dns.
Installation
$ pip install async-doh
Usage
Client
import asyncio
import aiohttp
from async_doh.client import query, query_json
async def main():
async with DoHClient() as client:
result = await client.query('https://1.1.1.1/dns-query', 'www.google.com', 'A')
print('query:', result)
result = await client.query_json('https://1.1.1.1/dns-query', 'www.google.com', 'A')
print('query_json:', result)
asyncio.run(main())
Server
from aiohttp import web
from async_doh.server import application
web.run(application)
Now you have http://localhost:8080/dns-query
as an endpoint.
Patching async_dns
By importing the patch, async_dns will support queries throught HTTPS (aka DNS over HTTPS):
import asyncio
from async_dns import types
from async_dns.resolver import ProxyResolver
from async_doh.resolver_patch import patch
async def main():
revoke = await patch()
resolver = ProxyResolver(proxies=['https://dns.alidns.com/dns-query'])
print(resolver.query('www.google.com', types.A))
await revoke()
asyncio.run(main())
References
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
async-doh-0.2.0.tar.gz
(3.8 kB
view hashes)
Built Distribution
Close
Hashes for async_doh-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 713dcdda49dff0d61c659a3aaa874d8a3e7e1d33ec9b466f7e62816e137d821c |
|
MD5 | f04b36dd936a75c85bf60f8f75379e89 |
|
BLAKE2b-256 | 86c53c147c0f24fc8164b86d64d9dfaf62b5d93127ddf1b84bd5c9fa1defa8f0 |