Skip to content

Instantly share code, notes, and snippets.

@tnayuki
Created August 5, 2015 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnayuki/ba35d5d048b4cbbd90eb to your computer and use it in GitHub Desktop.
Save tnayuki/ba35d5d048b4cbbd90eb to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import readline
import time
from line import LineClient, LineGroup, LineContact
client = LineClient(authToken="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
contact = client.getContactByName("りんな")
while True:
message = raw_input("> ")
contact.sendMessage(message)
time.sleep(1) #手抜き
print "りんな: " + contact.getRecentMessages(count=1)[0].text
print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment