1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# exotel-py #
[](https://gitter.im/sarathsp06/exotel-py?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://travis-ci.org/sarathsp06/exotel-py)
Python module for exotels call and sms api's(Unofficial).
### installation ###
`
pip install exotel
`
## Usage ##
- Initialize
```
from exotel import Exotel
client = Exotel(sid,token)
```
- make call to connect a number to another
```
client.call_number('from_number','exophone','to_number')
```
- make call to connect a number to a flow
```
client.call_flow('from_number','exophone','flow_id')
```
- send an sms
```
client.sms('from_number',to_number',"sms_body")
```
- get details of an sms
```
client.sms_details('sms_sid')
```
- get details of a call
```
client.call_details('call_sid')
```
## Authors and Contributors ##
In 2015, Sarath S Pllai ([@sarath_sp06](https://twitter.com/sarath_sp06)) started .Any bug reports would be addressed .Feel free to add more functions and send me the patch with updated README
## Support or Contact ##
Having trouble using the library contact me at sarath.sp06@gmail.com
|