Metadata-Version: 1.1
Name: apidou
Version: 0.2
Summary: Module to communicate with APIdou, the connected plush
Home-page: http://github.com/iadjedj/apidou
Author: Ilann Adjedj
Author-email: ilann@apidou.fr
License: Beerware
Description: APIdou - Python communication with APIdou
        ========================================================================
        This module based on PyGATT (by Chris Peplin) makes easier to communicate
        over BLE with APIdou, the connected plush (www.apidou.fr).
        
        Example code :
        ```
        from apidou import APIdou
        # create an APIdou object using gatttool and a given MAC address
        device = APIdou("linux", "AA:BB:CC:DD:EE:FF")
        device.connect()
        
        device.setVibration(True)
        time.sleep(0.1)
        device.setVibration(False)
        
        device.disconnect()
        ```
        
        More examples on https://github.com/iadjedj/APIdouExamples/python
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved
Classifier: Natural Language :: French
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Communications
