Metadata-Version: 2.1
Name: LocalResolver
Version: 0.0.1
Summary: This package implement netbios and LLMNR query tool in python and HostnameResolver command line tool.
Home-page: https://github.com/mauricelambert/LocalResolver
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
License: UNKNOWN
Description: # HostnameResolver
        
        ## Description
        This package implement netbios and LLMNR query tool in python and HostnameResolver command line tool.
        
        ## Requirements
        This package require : 
         - python3
         - python3 Standard Library
         - Scapy
        
        ## Installation
        ```bash
        pip install LocalResolver 
        ```
        
        ## Examples
        
        ### Command lines
        ```bash
        HostnameResolver -h
        HostnameResolver 192.168.1.2
        HostnameResolver 192.168.1.3,192.168.1.2,WIN10,HOMEPC,example.com
        ```
        
        ### Python3
        ```python
        from LocalResolver import LocalResolver
        
        localResolver = LocalResolver("192.168.1.45", timeout=3)
        hostname = localResolver.resolve_NBTNS()
        hostname = localResolver.resolve_LLMNR()
        ```
        
        ## Link
        [Github Page](https://github.com/mauricelambert/LocalResolver)
        
        ## Licence
        Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
