Update examples.rst

just replaced `send_text_message` with `send_text`
This commit is contained in:
Asiel Díaz Benítez
2019-08-14 16:02:20 -04:00
committed by holger krekel
parent 6f290e249f
commit 8077fdeddb

View File

@@ -22,7 +22,7 @@ For example you can type ``python`` and then::
# create a contact and send a message
contact = ac.create_contact("someother@email.address")
chat = ac.create_chat_by_contact(contact)
chat.send_text_message("hi from the python interpreter command line")
chat.send_text("hi from the python interpreter command line")
Checkout our :doc:`api` for the various high-level things you can do
to send/receive messages, create contacts and chats.