Metadata-Version: 1.1
Name: wmi-client-wrapper
Version: 0.0.5
Summary: Linux-only wrapper around wmi-client for WMI (Windows)
Home-page: https://github.com/kanzure/python-wmi-client-wrapper
Author: Bryan Bishop
Author-email: kanzure@gmail.com
License: BSD
Description: # python-wmi-client-wrapper
        
        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("Win32_Processor")
        ```
        
        ## testing
        
        ```
        nosetests
        ```
        
        ## license
        
        BSD
        
Platform: any
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
