Metadata-Version: 1.1
Name: boatd_client
Version: 0.1
Summary: Python wrapper for the boatd API, used to write behavior scripts.
Home-page: https://github.com/boatd/python-boatd
Author: Louis Taylor
Author-email: kragniz@gmail.com
License: GPL
Description: python-boatd
        ============
        
        [![BuildStatus](https://travis-ci.org/boatd/python-boatd.png?branch=master)](https://travis-ci.org/boatd/python-boatd)
        
        Python module for writing [boatd](https://github.com/boatd/boatd) behavior
        scripts.
        
        ## class __Boat__
        ****************************************
        A boat controlled by boatd
        
        
        ### __descriptors__
        ****************************************
        #### __heading__
        Return the current heading of the boat in degrees
        
        #### __position__
        Return a tuple in the form `(latitude, longitude)`
        
        #### __version__
        Return the version of boatd
        
        #### __wind__
        Return the direction of the wind in degrees
        
        ### __methods__
        ****************************************
        #### def __\__init__\__(self, host='localhost', port=2222):
        
        Create a boat instance, connecting to boatd at `host` on port `port`
        
        #### def __rudder__(self, angle):
        
        Set the angle of the rudder to be `angle` degrees
        
        #### def __sail__(self, angle):
        
        Set the angle of the sail to `angle` degrees
        
        
Keywords: boat sailing wrapper rest
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires: docopt
