Metadata-Version: 1.1
Name: spa-phone-api
Version: 0.1.0
Summary: Provides an API for Linksys/Sipura VoIP SPA Phones
Home-page: http://github.com/Bouke/spa-phone-api
Author: Bouke Haarsma
Author-email: bouke@webatoom.nl
License: MIT
Description: =============
        SPA Phone API
        =============
        
        SPA Phone API provides an API for Linksys/Sipura SPA IP Phones. It can be used
        to programmatically update the phone's address book. Combining it into other
        scripts it can be used to sync the phone's address book with (for example)
        Google Contacts.
        
        Installation
        ============
        
        Installation with ``pip``:
        ::
        
            $ pip install spa-phone-api
        
        
        Usage
        =====
        
        Read the address book
        ::
        
            import spa_phone
            spa_phone.read('10.0.1.8')
        
        Update the address book
        ::
        
            import spa_phone
            spa_phone.write('10.0.1.8', [
                ('Bouke Haarsma', '+31508200267'),
                ('WebAtoom', '+31508200267'),
                ('Apple Store', '+18006927753'),
            ])
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Communications :: Internet Phone
