You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2017. It is now read-only.
Currently, asyncio calls the standard getaddrinfo() function in a thread
because this function is blocking. There is no standard asynchronous functio to
resolve an host name. It would be interesting to try to plug one of the
following asynchronous DNS client into asyncio:
http://www.gnu.org/software/adns/ => http://code.google.com/p/adns-python/
http://c-ares.haxx.se/ => https://pypi.python.org/pypi/pycares
https://github.com/getdnsapi/getdns
http://adns.sourceforge.net/
Old project:
http://pydns.sourceforge.net/ (no update since 11 years? blocking?)
Original issue reported on code.google.com by [email protected] on 6 Mar 2014 at 4:47