Hey_Arnold

image url

Jul 22nd, 2022 (edited)
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.58 KB | None | 0 0
  1.     def on_image_received(self, image_message: chatting.IncomingImageMessage):
  2.         print(Fore.BLUE + "[+] Image message {} was received from {}".format(image_message.image_url,
  3.                                                                              image_message.from_jid) + Style.RESET_ALL)
  4.  
  5.  
  6.  
  7.  
  8.     def on_video_received(self, response: chatting.IncomingVideoMessage):
  9.         print(Fore.BLUE + "[+] Video message {} was received from {}".format(response.video_url,
  10.                                                                              response.from_jid) + Style.RESET_ALL)
Add Comment
Please, Sign In to add comment