Metadata-Version: 2.1
Name: minotorr
Version: 0.7.1
Summary: Unofficial Libre Hardware Monitor python client
Home-page: https://github.com/Gokender/minotorr
Author: gokender
Author-email: gauthier.chaty+pypi@outlook.com
License: UNKNOWN
Description: # Minotorr
        > Unofficial Libre Hardware Monitor python client
        
        Minotorr is a library that allows you to retrieve hardware informations from a Windows system based on the Libre Hardware Monitor tool.
        
        ![](docs/header.png)
        
        ## Installation
        
        ### Prerequisites
        
        You need to download [Libre Hardware Monitor](https://ci.appveyor.com/project/LibreHardwareMonitor/librehardwaremonitor/build/artifacts).
        
        Run it and start the web server. The program is now gathering information on the hardware.
        
        ### Library
        
        Install the library with PIP
        
        ```sh
        pip install minotorr
        ```
        
        ## Usage example
        
        ```python
        from minotorr import minotorr
        
        comp = minotorr.Minotorr(port=2085) #default port 8085
        
        print(comp.cpu.cores)
        print(comp.cpu.temperatures.average)
        
        ```
        
        ## Release History
        
        * 0.7.0
            * ADD: GPU module
            * ADD: Docstrings
            * CHANGE: Change structure of the program
            * CHANGE: Unit tests updated
        * 0.6.2
            * CHANGE: Fix typo in documentation
            * CHANGE: Update warning in minotorr.py 
        * 0.6.0
            * CHANGE: Update project name 
            * CHANGE: Update docs (module code remains unchanged)
        * 0.1.0
            * The first proper release
        * 0.0.1
            * Work in progress
        
        ## Meta
        
        Gauthier Chaty – [@gokender](https://twitter.com/gokender) – gauthier.chaty+github@outlook.com
        
        Distributed under the MIT license. See ``LICENSE`` for more information.
        
        [https://github.com/Gokender](https://github.com/Gokender/)
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
