danmu is Chinese translation of chat message.
It is an open source chat message api for live platforms like douyu, panda, huya, zhanqi.
Using this, even without programming basis, you will have an easy access to chat messages.
With less than 30 lines of code, you may develop further with chat messages.
Douyu, panda, Zhanqi, Quanmin, bilibili are all supported.
It supports multi versions of python and platforms, making it available for all developers and amateurs.
Once started, it will auto connect when anchor showed up and re-connect when anchor connect again.
With good optimization and abstract structure, almost all chat messages will be catched and the whole program is easy to be modified.
You may find document here.
You may use this script to install danmu:
pip install danmu
The following is a simple demo of how to use danmu.
import time, sys
from danmu import DanMuClient
def pp(msg):
print(msg.encode(sys.stdin.encoding, 'ignore').
decode(sys.stdin.encoding))
dmc = DanMuClient('http://www.douyu.com/lslalala')
if not dmc.isValid(): print('Url not valid')
@dmc.danmu
def danmu_fn(msg):
pp('[%s] %s' % (msg['NickName'], msg['Content']))
@dmc.gift
def gift_fn(msg):
pp('[%s] sent a gift!' % msg['NickName'])
@dmc.other
def other_fn(msg):
pp('Other message received')
dmc.start(blockThread = True)
Set default chat message dealer
Messages are split into three types to be registered: danmu, gift, other.
Which means: ordinary chat messages, gift messages, other messages.
from danmu import DanMuClient
dmc = DanMuClient('http://www.douyu.com/lslalala')
@dmc.default
def default_fn(msg):
pp('[%s] %s' % (msg['NickName'], msg['Content']))
Cancel message dealer registered
Using the following codes, you can cancel a message dealer registered.
from danmu import DanMuClient
dmc = DanMuClient('http://www.douyu.com/lslalala')
dmc.default(None)
dmc.gift(None)
Q: What's the message type of chat messages?
A: A dictionary with at least three keys, NickName, Content, MsgType.
If you have any problem or suggestion, feel free to contact me through this Issue.