Metadata-Version: 1.0
Name: python-wialon
Version: 1.0.2
Summary: Wialon Remote API wrapper for Python.
Home-page: https://github.com/wialon/python-wialon
Author: Alex Chernetsky chal@gurtam.com
Author-email: UNKNOWN
License: UNKNOWN
Download-URL: http://pypi.python.org/pypi/python-wialon/
Description: Wialon
        =========
        
        `Wialon` is a Python wrapper for Remote Api. (Now with support for Python 3 since v1.0.2)
        
        Installation
        ------------
            pip install python-wialon
            
        Usage
        -----
        
        ```python
        from wialon import Wialon, WialonError
        
        try:
            wialon_api = Wialon()
            result = wialon_api.core_login(user='YOUR WIALON USER LOIGN', password='YOUR WIALON USER PASSWORD')
            wialon_api.sid = result['eid']
        except WialonError:
            pass
        ```
            
        API Documentation
        -----------------
        
        [Wialon Remote Api documentation](http://sdk.wialon.com/wiki/en/sidebar/remoteapi/apiref/apiref "Remote Api")
        
Keywords: wialon remote api wrapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
