Python client library for the RapidPro
Project description
RapidPro Python Client
======================
![Build Status](https://travis-ci.org/rapidpro/rapidpro-python.svg?branch=master)
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.client 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
```
======================
![Build Status](https://travis-ci.org/rapidpro/rapidpro-python.svg?branch=master)
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.client 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
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rapidpro-python-1.6.1.tar.gz
(17.4 kB
view hashes)