Metadata-Version: 2.1
Name: aiodnsresolver
Version: 0.0.15
Summary: Asyncio Python DNS resolver
Home-page: https://github.com/michalc/aiodnsresolver
Author: Gerald
Author-email: i@gerald.top
License: MIT
Description: # aiodnsresolver [![CircleCI](https://circleci.com/gh/michalc/aiodnsresolver.svg?style=svg)](https://circleci.com/gh/michalc/aiodnsresolver) [![Test Coverage](https://api.codeclimate.com/v1/badges/8fa95ca31fe002296b9b/test_coverage)](https://codeclimate.com/github/michalc/aiodnsresolver/test_coverage)
        
        Asyncio Python DNS resolver. Pure Python, with no dependencies other than the standard library, and threads are not used.
        
        
        ## Installation
        
        ```bash
        pip install aiodnsresolver
        ```
        
        
        ## Usage
        
        ```python
        from aiodnsresolver import Resolver, TYPES
        
        resolve = Resolver()
        ip_addresses = await resolve('www.google.com', TYPES.A)
        ```
        
Keywords: async dns asyncio
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
