Metadata-Version: 1.1
Name: netipmi
Version: 0.1.3
Summary: IPMI energy measuments tool
Home-page: https://github.com/VitorRamos/ipmi
Author: Vitor Ramos, Alex Furtunato
Author-email: ramos.vitor89@gmail.com, alex.furtunato@academico.ifrn.edu.br
License: MIT
Description: IPMI
        ====
        
        Python module to request ipmi power data using the web service
        
        Example
        
        .. code:: python
        
            import ipmi
            import time
        
            ipmi_sensor = ipmi.IPMI(server="http://cluster-bmc", user="admin", password="admin", proxy={"http":"socks5h://admin:1080"})
        
            while 1:
                data = ipmi_sensor.get_data()
                print(data, "\n")
                time.sleep(1)
        
        
Keywords: ipmi energy sensor tool
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
