https://github.com/carpedm20/line
May the LINE be with you...
https://github.com/carpedm20/line
line line-massenger python
Last synced: 2 months ago
JSON representation
May the LINE be with you...
- Host: GitHub
- URL: https://github.com/carpedm20/line
- Owner: carpedm20
- License: other
- Created: 2014-08-01T23:37:07.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-28T05:36:17.000Z (about 7 years ago)
- Last Synced: 2025-04-01T04:53:13.985Z (2 months ago)
- Topics: line, line-massenger, python
- Language: Python
- Homepage: http://carpedm20.github.io/line/
- Size: 4.07 MB
- Stars: 823
- Watchers: 84
- Forks: 194
- Open Issues: 99
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
- License: LICENSE
Awesome Lists containing this project
README
LINE
----[](https://gitter.im/carpedm20/LINE?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
- Documentation : [http://carpedm20.github.io/line/](http://carpedm20.github.io/line/)
- Developer Mailing List: [Google Group](https://groups.google.com/forum/#!forum/line-python-developer)*May the LINE be with you...*
Update
------**2015.05.28**
`sendImage` and `sendImageWithURL` is fixed.
To send an Image:
>>> contact = client.contacts[0]
>>> contact.sendImage('./image.jpg')Or use:
>>> contact = client.contacts[0]
>>> contact.sendImageWithURL('https://avatars3.githubusercontent.com/u/3346407?v=3&s=460')**2015.03.31**
authToken expiration [issue](https://github.com/carpedm20/LINE/issues/9) solved.
update authToken **automatically**:
$ pip install line --upgrade
There is nothing to change in your original code.
update authToken **manually**:
$ pip install line --upgrade
$ python
>>> from line import LineClient, LineGroup, LineContact
>>> client = LineClient("ID", "PASSWORD")
>>> client.updateAuthToken() # manual update
True**2014.08.08**
Some codes are removed because of the request of LINE corporation. You can use library only with `authToken` login.
Screenshot
----------
Author
------Taehoon Kim / [@carpedm20](http://carpedm20.github.io/about/)