Advertisement
tactial

Untitled

Mar 26th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.91 KB | None | 0 0
  1. import sys
  2.  
  3. import time
  4.  
  5.  
  6. from kik_unofficial.kikclient import KikClient
  7.  
  8.  
  9.  
  10. def main():
  11.  
  12.     username, password = "tacticalrage", " 6teW1#5otCHVLI(I$@hW£#£hyi%@%#&7382£&@£@527499@%#"*77382%@42%j"
  13.  
  14.    kik_client = KikClient(username, password)
  15.  
  16.  
  17.    chat_partners = kik_client.get_chat_partners()
  18.  
  19.    print("[+] Chats\n{}".format("\n".join([peer['jid'] for peer in chat_partners.values()])))
  20.  
  21.  
  22.    # let's talk
  23.  
  24.    username = "rage tactical"
  25.  
  26.    kik_client.send_is_typing(username, "true")
  27.  
  28.    time.sleep(0.5)
  29.  
  30.    kik_client.send_is_typing(rage, "false")
  31.  
  32.    kik_client.send_message(rage, "worked")
  33.  
  34.  
  35.    print("[+] Done!")
  36.  
  37.    kik_client.close()
  38.  
  39.  
  40.  
  41. if __name__ == '__main__':
  42.  
  43.    if sys.version_info[0] < 3:
  44.  
  45.        raise Exception("Must be using Python 3!!")
  46.  
  47.    try:
  48.  
  49.        main()
  50.  
  51.    except KeyboardInterrupt:
  52.  
  53.        print("[!] User stopped execution.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement