Metadata-Version: 1.1
Name: spa-phone-api
Version: 0.3.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
        
        
        Command Line Usage
        ==================
        
        Update the address book from OS X Contacts or Microsoft Outlook. Defaults to
        sync all contacts, but an optional group parameter can be specified.
        ::
        
            $ spa-sync ip-address [--provider PROVIDER] [--group GROUP]
        
        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'),
            ])
        
        Developing
        ==========
        
        Accessing Outlook (Windows)
        ---------------------------
        To access Outlook on Windows, you need ``pywin32``, which can be downloaded
        from the py2exe_ download page. Make sure to download the correct version
        matching your python version and architecture. To install ``pywin32`` in your
        virtualenv, install it using ``easy_install`` in the activated virtualenv
        ::
        
            $ Scripts\activate.bat
            (env)$ easy_install [py2win]
        
        Building EXEs (Windows)
        -----------------------
        To build EXEs on Windows, you need ``py2exe``, which can be downloaded from
        the pywin32_ download page. The same install instructions as ``pywin32`` apply.
        
        .. _py2exe: https://sourceforge.net/projects/py2exe/files/py2exe/
        .. _pywin32: https://sourceforge.net/projects/pywin32/files/pywin32/
        
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
