Metadata-Version: 2.1
Name: wmi-client-wrapper-py3
Version: 2018.3
Summary: A fork of Bryan Bishop's wmi-client-wrapper extended to include Python3 support
Home-page: https://github.com/ftpsolutions/python-wmi-client-wrapper
Author: Edward Beech
Author-email: edward.beech@ftpsolutions.com.au
License: BSD
Description: # python-wmi-client-wrapper (forked for Python3 support)
        
        NOTE: This repo contains a fork from [python-wmi-client-wrapper](https://github.com/kanzure/python-wmi-client-wrapper) by [kanzure](https://github.com/kanzure); the only modifications are the addition of Python3 support.
        
        To install this forked version:
        
        ```
        pip install wmi-client-wrapper-py3
        ```
        
        The rest of this README is verbatim of the original repo.
        
        ---
        
        This is a wrapper around wmi-client for Linux. Apparently the python-wmi module
        uses Windows APIs to access WMI, which isn't something that is going to work on
        Linux.
        
        ## installing
        
        ```
        pip install wmi-client-wrapper
        ```
        
        ## usage
        
        ```
        import wmi_client_wrapper as wmi
        
        wmic = wmi.WmiClientWrapper(
            username="Administrator",
            password="password",
            host="192.168.1.149",
        )
        
        output = wmic.query("SELECT * FROM Win32_Processor")
        
        #get FibrePort Info
        wmic = wmi.WmiClientWrapper(
            username="Administrator",
            password="password",
            host="192.168.1.1",
            namespace='//./root/WMI'
        )
        output = wmic.query('Select * FROM MSFC_FibrePortNPIVAttributes')
        
        ```
        
        ## testing
        
        ```
        nosetests
        ```
        
        ## license
        
        BSD
        
Keywords: sample setuptools development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: dev
Provides-Extra: test
