A python library for resolving Bilibili Danmaku with Flask-style API.
Project description
Bilibili Danmaku Resolver Python
A python library for resolving Bilibili Danmaku with Flask-style API.
一个提供Flask-style API的Bilibili直播弹幕协议解析器。 简体中文 English
Installation
Git Clone
git clone https://github.com/MerlynAllen/bilibili_danmaku.git
cd bilibili_danmaku
pip3 install -r requirements.txt
Then copy livedanmaku directory into your working directory.
Pip
pip3 install livedanmaku
Requirements
Python Version >= 3.6
Libraries: aiohttp brotli aioconsole
Usage
APIs at a glance
A sample client will look like this:
#! /usr/bin/python3
from livedanmaku import danmaku
import logging as log
# LOGLEVEL = log.DEBUG
# log.basicConfig(
# level=LOGLEVEL, format="[%(asctime)s (%(levelname)s) line %(lineno)d in %(funcName)s]\n%(message)s\n----")
client = danmaku.Danmaku()
client.set_cookie_file("cookie.txt")
@client.processor("DANMU_MSG")
def print_msg(msg):
username = msg["info"][2][1]
content = msg["info"][1]
print(f"\033[2K\r[\x1b[34m{username}\x1b[39m]: {content}")
if content == "Hello":
client.send(f"@{username} hello!")
# os.system(f"notify-send '[{username}]said:' '{content}' --app-name='Bilibili Danmaku Room {client.roomid}' -t 3000")
@client.processor("INTERACT_WORD")
def process_interact_word(event):
username = event["data"]["uname"]
print(f"\033[2K\r{username} entered live room", end="")
client.send(f"@{username} welcome to live room!")
@client.processor("NO_IMPL")
def process_no_impl(event):
# write not implemeted type of data to log files.
pass
try:
client.connect(12345)
#do some thing
client.wait()
except KeyboardInterrupt:
print("\rBye!")
exit(0)
Initializing
Import and create Danmaku object
from livedanmaku import danmaku
client = danmaku.Danmaku(
# roomid = None,
# ua = None,
# cookie = None,
# stdin = None
)
All parameters can be left unset. cookie and roomid can be set later by other functions. Default ua is User-Agent of Firefox 96.0 on Linux (64-bits).
client.set_cookie("xxxxxxx")
client.set_cookie_file("cookie.txt")
Reads cookie from either string or file.
APIs
It provides a function decorator processor for user to implement.
@danmakuobject.processor(msg_type_name)
def func_name(event):
pass
Bilibili live room danmaku transfers different types of messages distinguished by values of key cmd in json data. The decorator does not process json data, but simply passes original json.loads loaded dict object to function for user to implement aiming to preserve more data details.
Sample dict data event
{"cmd": "DANMU_MSG", "info": [[0, 1, 25, 16777215, 1642377825835, 0, 0, "c9f269af", 0, 0, 0, "", 0, "{}", "{}", {"mode": 0, "show_player_type": 0, "extra": "{'send_from_me':false,'mode':0,'color':16777215,'dm_type':0,'font_size':25,'player_mode':1,'show_player_type':0,'content':'didi','user_hash':'xxxx','emoticon_unique':'','direction':0,'pk_direction':0,'space_type':'','space_url':''}"}], "didi", [34571330, "xxxx", 0, 0, 0, 10000, 1, ""], [], [2, 0, 9868950, ">50000", 1], ["", ""], 0, 0, "None", {"ts": 1642377825, "ct": "1D32642E"}, 0, 0, "None", "None", 0, 210]}
msg_type_name specifies the implementation function when meets the value of key cmd in dict event.
No Implemetation (I don't want to filter them!)
Unimplemented types of message will raise NotImplemetedError. Redirect them to NO_IMPL.
@client.processor("NO_IMPL")
def func(e):
# Write to logfile
pass
Connecting
Simply
client.connect(roomid)
# do some thing
client.wait()
NOTICE: THIS WILL BLOCK THE THREAD!
Please use multitasking if needed.
Now this method will no longer be blocking anymore(>=0.0.4). Asynchronous code will run in a seperate thread.
Sending Danmaku
client.send(string_message)
Can be used in processor functions.
Standard input stream is read as manual input or file input and automatically send from stdin.(Asynchronous IO)
Enabling Logging
import logging as log
LOGLEVEL = log.DEBUG
log.basicConfig(level=LOGLEVEL, format="[%(asctime)s (%(levelname)s) line %(lineno)d in %(funcName)s]\n%(message)s\n----")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file livedanmaku-0.0.6.tar.gz.
File metadata
- Download URL: livedanmaku-0.0.6.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24485e44fb59bb1686c12ada9c911fb9831dbfd475e1690339242856a2046c27
|
|
| MD5 |
79d152f729d4074d4175fe7a7b20b114
|
|
| BLAKE2b-256 |
01e9078973dcf58baf55977713a8a3efa4bd7c5229b5763cc10d2489e820ea43
|
File details
Details for the file livedanmaku-0.0.6-py3-none-any.whl.
File metadata
- Download URL: livedanmaku-0.0.6-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2aa15501b5f5e5a4152a0496a65c03d95038f7dee485d8e13a373f3107147de
|
|
| MD5 |
1a5d0885dc29a3209c8b742192573ca2
|
|
| BLAKE2b-256 |
ff6fa8230e31e9352a4ba0988691523ced0c2abeb93ba59936d0c5e904517b38
|