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
4 changes: 2 additions & 2 deletions send_sms.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from twilio.rest import TwilioRestClient
from twilio.rest import Client
from credentials import account_sid, auth_token, my_cell, my_twilio

# Find these values at https://twilio.com/user/account
client = TwilioRestClient(account_sid, auth_token)
client = Client(account_sid, auth_token)

my_msg = "Your message goes here..."

Expand Down