python send sms

Solutions on MaxInterview for python send sms by the best coders in the world

showing results for - "python send sms"
Giulia
31 Nov 2019
1import requests
2resp = requests.post('https://textbelt.com/text', {
3  'phone': '5555555555',
4  'message': 'Hello world',
5  'key': 'textbelt',
6})
7print(resp.json())