If you need text / sms notification or alerts to be triggered by your program when https://www.twilio.com/ is the best option. You can consume it in any language like java, python, node etc. Simple to use and very effective.
Here is its code base in python : https://github.com/twilio/twilio-python
Use case :
- Bank account it going through some suspicious activities and need text alert.
- Text appointment reminder to customers.
- Text status of services etc.
Sample code of usage.
__author__ = ‘asee2278’
import twiliofrom twilio.rest import TwilioRestClient
# put your own credentials here
ACCOUNT_SID = “AC72b94808df4448e5923b27258493df48”
AUTH_TOKEN = “XXXXXXXXXXXX”client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
message = client.messages.create(
to=”+13045047736″,
from_=”+16814044918″,
body=”Test message “,
)print message.sid