Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def sms():
if __name__ == "__main__":
app.run(debug=True)
```

### Python code to make a phone call to every number that texted your Twilio number
```python
from twilio.rest import Client
Expand All @@ -129,6 +130,7 @@ for num in client.messages.list(to='YOUR-TWILIO-NUMBER'):
)
print(call.sid)
```

## Tutorials
### by product
- [SMS docs](https://www.twilio.com/docs/sms)
Expand Down