Metadata-Version: 1.1
Name: line
Version: 0.7.0
Summary: May the LINE be with you...
Home-page: http://carpedm20.github.io/line
Author: Taehoon Kim
Author-email: carpedm20@gmail.com
License: BSD License
Description: LINE
        ----
        
        |Join the chat at https://gitter.im/carpedm20/LINE|
        
        -  Documentation : 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
        ----------
        
        .. figure:: http://3.bp.blogspot.com/-FX3ONLEKBBY/U9xJD8JkJbI/AAAAAAAAF2Q/1E7VXOkvYAI/s1600/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA+2014-08-02+%E1%84%8B%E1%85%A9%E1%84%8C%E1%85%A5%E1%86%AB+10.47.15.png
           :alt: alt\_tag
        
        Author
        ------
        
        Taehoon Kim / [@carpedm20](http://carpedm20.github.io/about/)
        
        .. |Join the chat at https://gitter.im/carpedm20/LINE| image:: https://badges.gitter.im/Join%20Chat.svg
           :target: https://gitter.im/carpedm20/LINE?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
        
Keywords: line
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Communications :: Chat
