Metadata-Version: 2.1
Name: wialon
Version: 1.0.4
Summary: Wialon Remote API for Python
Home-page: https://gitlab.com/goldenm-software/open-source-libraries/wialon-python
Author: Golden M
Author-email: support@goldenmcorp.com
License: UNKNOWN
Description: # Wialon SDK for Python
        [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.com/goldenm-software/open-source-libraries/wialon-python/blob/master/LICENSE) [![pypi version](https://badge.fury.io/py/wialon.svg)](https://pypi.org/project/wialon/)
        ## Installation
        Use the package manager [pip](https://pypi.org/) to install wialon-pythonn.
        ```bash
        pip3 install wialon
        ```
        
        ## Usage
        
        ```python
        from wialon.sdk import WialonError, WialonSdk
        
        is_development = True
        scheme = 'https'
        host = 'hst-api.wialon.com'
        port = 0
        session_id = ''
        extra_params = {}
        
        # Initialize Wialon instance
        wialon = WialonSdk(
          is_development=is_development,
          scheme=scheme,
          host=host,
          port=port,
          session_id=session_id,
          extra_params=extra_params
        )
        
        try:
          # Login with API Token
          response = wialon.login('YourTokenHere')
          print(response)
          
          # Logout
          wialon.logout()
        except WialonError as e:
          print(f'Wialon related error - {e}')
        except Exception as e:
          print(f'Other errors related to code - {e}')
        
        ```
        
        ## 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
