I finished to write a POC code and ready to write this LINE library, but I have a lot of works to do these days.. so it might take some time to finish this library..
Therefore, I uploaded poc.py for someone who wants to play with LINE ASAP! Just edit the POC code and enojoy it before I finish this LINE library~
Read the instruction of poc.py be fore you test the code!
May the LINE be with you...
by carpedm20
ps. this code was inspired from here
May the LINE be with you...
>>> from line import LineClient
>>> l=LineClient(YOUR_ID, YOUR_PASSWORD);
-
using pip: (Not working right now)
$ pip install line
-
using easy_install: (Not working right now)
$ easy_install line
-
using git: (Not working right now)
$ git clone git://github.com/carpedm20/line.git $ cd line $ python setup.py install
First, you need to create a LineClinet
object with YOUR_ID and YOUR_PASSWORD
>>> from line import LineClient
>>> li = LineClient(YOUR_ID, YOUR_PASSWORD)
Source codes are distributed under BSD license.
Taehoon Kim / @carpedm20