Metadata-Version: 1.1
Name: vvvv
Version: 0.1.2
Summary: vvvv Python OSC client
Home-page: https://github.com/Djiit/vvvv
Author: Julien Tanay
Author-email: julien.tanay@gmail.com
License: Apache 2.0
Description: vvvv
        ====
        
        |Build Status2| |Build Status| |PyPI| 
        
        About
        -----
        
        Minimal vvvv Python OSC client. Compatible with **Python 3.4+**
        
        Quick start
        -----------
        
        Install **vvvv** with pip :
        
        .. code:: bash
        
            pip install vvvv
        
        Use the VVVVClient in your project and start sending OSC messages to
        vvvv :
        
        .. code:: python
        
            >>> from vvvv import VVVVClient
            >>> vc = VVVVClient('127.0.0.1', '4444')
            >>> vc.send_msg('/filter', [0,255,255])
        
        See more :
        
        -  vvvv: http://vvvv.org/
        -  OSC: http://opensoundcontrol.org/
        
        License
        -------
        
        See `LICENSE <./LICENSE>`__
        
        .. |Build Status| image:: https://travis-ci.org/Djiit/vvvv.svg
           :target: https://travis-ci.org/Djiit/vvvv
        .. |Build Status2| image:: https://drone.io/github.com/Djiit/vvvv/status.png
           :target: https://drone.io/github.com/Djiit/vvvv/latest
        .. |PyPI| image:: https://img.shields.io/pypi/v/vvvv.svg
           :target: https://pypi.python.org/pypi/vvvv
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
