Metadata-Version: 1.1
Name: rapidpro-python
Version: 2.1.5
Summary: Python client library for the RapidPro
Home-page: https://github.com/rapidpro
Author: Nyaruka
Author-email: code@nyaruka.com
License: BSD
Description: RapidPro Python Client
        ======================
        
        [![Build Status](https://travis-ci.org/rapidpro/rapidpro-python.svg?branch=master)](https://travis-ci.org/rapidpro/rapidpro-python)
        [![Coverage Status](https://coveralls.io/repos/github/rapidpro/rapidpro-python/badge.svg?branch=master)](https://coveralls.io/github/rapidpro/rapidpro-python)
        [![PyPI Release](https://img.shields.io/pypi/v/rapidpro-python.svg)](https://pypi.python.org/pypi/rapidpro-python/)
        
        Official Python client library for the [RapidPro](http://rapidpro.github.io/rapidpro/). Supports latest Python 2 and 3.
        
        Visit [here](http://rapidpro-python.readthedocs.org/) for complete documentation.
        
        Installation
        ------------
        
        ```
        pip install rapidpro-python
        ```
        
        Example
        -------
        
        ```python
        from temba_client.v1 import TembaClient
        client = TembaClient('rapidpro.io', 'your-api-token')
        for contact in client.get_contacts():
            print(contact.name)
        
        client.create_broadcast(text="Howdy", contacts=contacts[0:5])
        client.block_contacts(contacts[1:3])
        ```
        
        If you don't know your API token then visit the [API Explorer](http://rapidpro.io/api/v1/explorer)
        
        Development
        -----------
        
        For discussions about future development, see the [RapidPro Developers Group](https://groups.google.com/forum/#!forum/rapidpro-dev).
        
        To run the tests:
        
        ```
        nosetests --with-coverage --cover-erase --cover-package=temba_client --cover-html
        ```
        
Keywords: rapidpro client
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
