.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
bilibili.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Bilibili is a Chinese video sharing website.
3
4.. _Bilibili: https://www.bilibili.com
5"""
6
7import random
8import string
9from urllib.parse import urlencode
10from datetime import datetime, timedelta
11
12from searx import utils
13
14# Engine metadata
15about = {
16 "website": "https://www.bilibili.com",
17 "wikidata_id": "Q3077586",
18 "official_api_documentation": None,
19 "use_official_api": False,
20 "require_api_key": False,
21 "results": "JSON",
22}
23
24# Engine configuration
25paging = True
26results_per_page = 20
27categories = ["videos"]
28
29# Search URL
30base_url = "https://api.bilibili.com/x/web-interface/search/type"
31
32cookie = {
33 "innersign": "0",
34 "buvid3": "".join(random.choice(string.hexdigits) for _ in range(16)) + "infoc",
35 "i-wanna-go-back": "-1",
36 "b_ut": "7",
37 "FEED_LIVE_VERSION": "V8",
38 "header_theme_version": "undefined",
39 "home_feed_column": "4",
40}
41
42
43def request(query, params):
44 query_params = {
45 "__refresh__": "true",
46 "page": params["pageno"],
47 "page_size": results_per_page,
48 "single_column": "0",
49 "keyword": query,
50 "search_type": "video",
51 }
52
53 params["url"] = f"{base_url}?{urlencode(query_params)}"
54 params["cookies"] = cookie
55
56 return params
57
58
59def response(resp):
60 search_res = resp.json()
61
62 results = []
63
64 for item in search_res.get("data", {}).get("result", []):
65 title = utils.html_to_text(item["title"])
66 url = item["arcurl"]
67 thumbnail = item["pic"]
68 description = item["description"]
69 author = item["author"]
70 video_id = item["aid"]
71 unix_date = item["pubdate"]
72
73 formatted_date = datetime.fromtimestamp(unix_date)
74
75 # the duration only seems to be valid if the video is less than 60 mins
76 duration = utils.parse_duration_string(item["duration"])
77 if duration and duration > timedelta(minutes=60):
78 duration = None
79
80 iframe_url = f"https://player.bilibili.com/player.html?aid={video_id}&high_quality=1&autoplay=false&danmaku=0"
81
82 results.append(
83 {
84 "title": title,
85 "url": url,
86 "content": description,
87 "author": author,
88 "publishedDate": formatted_date,
89 "length": duration,
90 "thumbnail": thumbnail,
91 "iframe_src": iframe_url,
92 "template": "videos.html",
93 }
94 )
95
96 return results
request(query, params)
Definition bilibili.py:43