readme for send image

This commit is contained in:
thekindlyone
2016-08-30 08:44:25 +05:30
parent b0c64fad5e
commit 73e6ed7959

View File

@@ -38,6 +38,10 @@ Sending a Message
sent = client.send(friend.uid, "Your Message") sent = client.send(friend.uid, "Your Message")
if sent: if sent:
print("Message sent successfully!") print("Message sent successfully!")
# IMAGES
client.sendLocalImage(friend.uid,message='<message text>',image='<path/to/image/file>') # send local image
imgurl = "http://i.imgur.com/LDQ2ITV.jpg"
client.sendRemoteImage(friend.uid,message='<message text>', image=imgurl) # send image from image url
Getting user info from user id Getting user info from user id