Metadata-Version: 2.1
Name: flespi
Version: 1.1.0
Summary: Flespi REST API for Python
Home-page: https://github.com/goldenm-software/flespi-python
Author: Golden M
Author-email: support@goldenmcorp.com
License: UNKNOWN
Description: # flespi-Python
        
        flespi-python is a flespi Rest API Wrapper for python language.
        [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/goldenm-software/flespi-python/blob/master/LICENSE)
        [![pypi version](https://badge.fury.io/py/flespi.svg)](https://pypi.org/project/flespi/)
        
        # Installation
        Use the package manager pip to install flespi-python.
        Install the dependencies and devDependencies and start the server.
        
        ```sh
        $ pip3 install flespi
        ```
        
        ### Usage
        ```python
        from flespi.rest import FlespiClient
        
        token = 'your_token' # Without "FlespiToken"
        is_development = True
        # Initialize Flespi instance
        flespi = FlespiClient(token=token, is_development=is_development)
        
        response = flespi.get('/gw/devices/all')
        
        print(response)
        ```
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
