Metadata-Version: 1.1
Name: apigpio
Version: 0.0.1
Summary: asyncio-based python client for pigpiod
Home-page: https://github.com/PierreRust/apigpio
Author: Pierre Rust
Author-email: pierre.rust@gmail.com
License: UNKNOWN
Download-URL: https://github.com/PierreRust/apigpio/archive/0.0.1.tar.gz
Description: # apigpio
        apigpio - an asyncio-based python client for pigpio
        
        
        The [pigpio](http://abyz.co.uk/rpi/pigpio/pigpiod.html) provides a very 
        convenient `pigpiod` daemon whcih can be used through a pipe or socket interface
        to access GPIOs on the Raspberry Pi. 
        
        `apigpio` is a python client library that uses asyncio to access the `pigpiod` 
        daemon. It's basically a port of the original python client provided with pigpio.
        
        ## Installation
        
        Once it is a bit more feature-complete I plan to make apigpio available on 
        Pypi, but until then you must install it from sources: 
         
            git clone https://github.com/PierreRust/apigpio.git
            cd apigpio
            python setup.py install
            
            
        ## Usage 
        
        See the examples in the `samples` directory.
        
Keywords: gpio,pigpio,asyncio,raspberry
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
