Metadata-Version: 2.1
Name: AsyncLine
Version: 1.5.7.2
Summary: LINE Unofficial Python Library with Asyncio support and C++ Binding
Home-page: UNKNOWN
Author: Anysz, Doodspav, Dyseo
Author-email: katro.coplax@gmail.com
License: MIT
Description: # ![Logo](https://user-images.githubusercontent.com/33342598/32363968-a52653c4-c0a4-11e7-9fdc-9572ba837d6d.png) AsyncLine
        _Unofficially Line bot Messaging using Asynchronous_
        
        [![python3.x](https://img.shields.io/badge/3.6%20%7C%203.7-blue.svg?&logo=python&label=Python)](https://www.python.org/downloads/release/python-372/) [![License](https://img.shields.io/github/license/dyseo/A.svg)](https://opensource.org/licenses/MIT) [![Build Status](https://travis-ci.org/dyseo/AsyncLine.svg?branch=master)](https://travis-ci.org/dyseo/AsyncLine) [![Version](https://img.shields.io/badge/Version-1.5.7-red)](https://github.com/dyseo/AsyncLine)
        ___
        
        ## Important
        Please be warned: `AsyncLine` is in a very early beta. You will encounter bugs when using it. In addition, there are very many rough edges. With that said, please try it out in your applications: I need your feedback to fix the bugs and file down the rough edges.
        
        ## Features
        -  Fully Asynchronously
        -  Safe-Thread thrift
        -  Slightly faster (make it sure)
        -  Easy to use
        -  Installed from pip 
        
        ## Installation
        - `pip3 install AsyncLine --upgrade`
        
        or clone this repository
        
        1. `git clone https://github.com/dyseo/AsyncLine`
        2. `cd AsyncLine`
        3. `pip3 install -r requirements.txt`
        
        ## Simple usage
        ```python
        from AsyncLine import LineNext
        import asyncio
        
        client = LineNext('ios')
        client.login(name='your session name')
        
        
        #Run bot
        loop = asyncio.get_event_loop()
        loop.run_until_complete(client.poll.streams())
        ```
        
        ## Author
        Dyseo / [Line](https://line.me/ti/p/~line.bngsad)
        
        ## Base Source
        Asnysz / [Anysz](https://github.com/anysz)
        
        
        ## Getting Error
        [Issues](https://github.com/dyseo/AsyncLine/issues) always open for this
        
        
        ## License
        *AsyncLine* - Unofficially API Client library for Python
        
        A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.
        
        AsyncLine is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Utilities
Classifier: Topic :: Internet
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
