Metadata-Version: 2.1
Name: pykonker
Version: 1.4.3
Summary: provides a simple interface to connect, send and receive information from Konker REST API
Home-page: https://github.com/KonkerLabs/pykonker
Author: Alexandre Junqueira
Author-email: alexjunq@konkerlabs.com
License: UNKNOWN
Description: # Objective
        
        This library creates a python wrapper over Konker API to allow easier usage and integration 
        with Konker REST API
        
        # Sample Usage
        
        ```python
        from pykonker.main.api import Client
        
        konker = Client()
        konker.login(username='', password='')
        applications = konker.get_applications()
        devices = konker.get_all_devices_for_application('default')
        data = konker.read_data(guid=devices[0]['guid'])
        ```
        
        # Change and publish the library on PyPi
        
        ```bash
        make shell 
        make pylint  
        ```
        * NOTE: solve problems identified by lint process .. after that it will generate the module to be published
        ```bash
        make upload
        ```
        
        after that, the module will be available on pip 
        
        
        ```bash
        pip install pykonker
        ```
        or 
        ```shell
        pip install --upgrade pykonker 
        ```
        
        # References
        
        * https://www.konkerlabs.com/developers/developers-en.html
        * https://konker.atlassian.net/wiki/spaces/DEV/pages/28180518/Guia+de+Uso+da+Plataforma+Konker
        * https://api.demo.konkerlabs.net/v1/swagger-ui.html
        * https://itnext.io/create-build-and-ship-a-python3-pip-module-in-5-minutes-31dd6d9d5c8f
        
Platform: UNKNOWN
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
