Metadata-Version: 2.1
Name: aiodnsresolver
Version: 0.0.6
Summary: aiodnsresolver
Home-page: https://github.com/michalc/aiodnsresolver
Author: Gerald
Author-email: i@gerald.top
License: MIT
Description: # aiodnsresolver
        
        Asyncio Python DNS resolver: to resolve the A or AAAA record of a domain name. Only Python, with no dependencies or threads.
        
        
        ## Installation
        
        ```bash
        pip install aiodnsresolver
        ```
        
        
        ## Usage
        
        ```python
        from aiodnsresolver import Resolver, types
        
        resolve = Resolver()
        ip_address = 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
