└── send-msg.py /send-msg.py: -------------------------------------------------------------------------------- 1 | from twilio.rest import Client 2 | 3 | # Type your cell phone number with WhatsApp installed: 4 | your_num = '+123456789' 5 | 6 | # Cell phone number of the reciver of your messages: 7 | to = '+987654321' 8 | 9 | # Reading client credentials from TWILIO_ACCOUNT_SID and AUTH_TOKEN: 10 | client = Client() 11 | 12 | # Defining sender and receiver of messages: 13 | from_num = f'whatsapp:{your_num}' 14 | to_num = f'whatsapp:{to}' 15 | 16 | client.messages.create(body='Hello, world!', 17 | from_=from_num, 18 | to=to_num) 19 | --------------------------------------------------------------------------------