line-web 0.1.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

lineweb 0.1.1

line-web
Line chatbot framework.
Usage
$ pip install line-web

from line import Line
from line.authentications import BusinessAuthentication

bot = Line(
authentication=BusinessAuthentication("<username>", "<password>"), # Business Account
bot="<shop>" # Shop Name
)


# event
# chat(message, messageSent, read, typing, typingVanished, noteUpdated, markedAsManualChat, unmarkedAsManualChat, chatRead, assigneeUpdated, tagged, ...)
# botUnreadChatCount(increment, ...)
# botInfo(hasChatRoomChanged, ...)
# ...

@bot.handle()
def on_event(bot, event):
print(bot, event)


@bot.handle("chat", "message")
def on_message(bot, event):
pass


bot.run()

Meta
Distributed under the MIT license. See LICENSE <https://github.com/miloira/line-web/LICENSE> for more information.
https://github.com/miloira/line-web

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.