要使用Python實現(xiàn)自動發(fā)送短信,你可以使用第三方的短信服務提供商的API。其中,Twilio是一個常用的短信服務提供商。以下是一個使用Twilio API發(fā)送短信的示例代碼:
首先,在Twilio官網(wǎng)注冊賬號,并創(chuàng)建一個項目,獲取賬號SID和認證令牌。
安裝Twilio庫:
pip install twilio
from twilio.rest import Client
# Your Twilio account SID and auth token
account_sid = 'YOUR_ACCOUNT_SID'
auth_token = 'YOUR_AUTH_TOKEN'
# Your Twilio phone number
from_number = 'YOUR_TWILIO_PHONE_NUMBER'
# Recipient's phone number
to_number = '+1234567890'
# Message to be sent
message = 'Hello, this is a test message from Twilio!'
# Create Twilio client
client = Client(account_sid, auth_token)
# Send message
message = client.messages.create(
body=message,
from_=from_number,
to=to_number
)
print('Message sent successfully!')
將上述代碼中的YOUR_ACCOUNT_SID
、YOUR_AUTH_TOKEN
和YOUR_TWILIO_PHONE_NUMBER
替換為你在Twilio官網(wǎng)獲取的信息。然后運行代碼,即可發(fā)送短信。