.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.niconico Namespace Reference

Functions

 request (query, params)
 
 response (resp)
 

Variables

dict about
 
list categories = ["videos"]
 
bool paging = True
 
bool time_range_support = True
 
dict time_range_dict = {"day": 1, "week": 7, "month": 30, "year": 365}
 
str base_url = "https://www.nicovideo.jp"
 
str embed_url = "https://embed.nicovideo.jp"
 
str results_xpath = '//li[@data-video-item]'
 
str url_xpath = './/a[@class="itemThumbWrap"]/@href'
 
str video_length_xpath = './/span[@class="videoLength"]'
 
str upload_time_xpath = './/p[@class="itemTime"]//span[@class="time"]/text()'
 
str title_xpath = './/p[@class="itemTitle"]/a'
 
str content_xpath = './/p[@class="itemDescription"]/@title'
 
str thumbnail_xpath = './/img[@class="thumb"]/@src'
 

Detailed Description

Niconico search engine for searxng

Function Documentation

◆ request()

searx.engines.niconico.request ( query,
params )

Definition at line 37 of file niconico.py.

37def request(query, params):
38 query_params = {"page": params['pageno']}
39
40 if time_range_dict.get(params['time_range']):
41 time_diff_days = time_range_dict[params['time_range']]
42 start_date = datetime.now() - timedelta(days=time_diff_days)
43 query_params['start'] = start_date.strftime('%Y-%m-%d')
44
45 params['url'] = f"{base_url}/search/{query}?{urlencode(query_params)}"
46 return params
47
48

◆ response()

searx.engines.niconico.response ( resp)

Definition at line 49 of file niconico.py.

49def response(resp):
50 results = []
51 dom = html.fromstring(resp.text)
52
53 for item in eval_xpath_list(dom, results_xpath):
54 relative_url = eval_xpath_getindex(item, url_xpath, 0)
55 video_id = relative_url.rsplit('?', maxsplit=1)[0].split('/')[-1]
56
57 url = f"{base_url}/watch/{video_id}"
58 iframe_src = f"{embed_url}/watch/{video_id}"
59
60 length = None
61 video_length = eval_xpath_getindex(item, video_length_xpath, 0)
62 if len(video_length) > 0:
63 try:
64 timediff = datetime.strptime(video_length, "%M:%S")
65 length = timedelta(minutes=timediff.minute, seconds=timediff.second)
66 except ValueError:
67 pass
68
69 published_date = None
70 upload_time = eval_xpath_getindex(item, upload_time_xpath, 0)
71 if len(upload_time) > 0:
72 try:
73 published_date = datetime.strptime(upload_time, "%Y/%m/%d %H:%M")
74 except ValueError:
75 pass
76
77 results.append(
78 {
79 'template': 'videos.html',
80 'title': extract_text(eval_xpath(item, title_xpath)),
81 'content': eval_xpath_getindex(item, content_xpath, 0),
82 'url': url,
83 "iframe_src": iframe_src,
84 'thumbnail': eval_xpath_getindex(item, thumbnail_xpath, 0),
85 'length': length,
86 "publishedDate": published_date,
87 }
88 )
89
90 return results

Variable Documentation

◆ about

dict searx.engines.niconico.about
Initial value:
1= {
2 "website": "https://www.nicovideo.jp/",
3 "wikidata_id": "Q697233",
4 "use_official_api": False,
5 "require_api_key": False,
6 "results": "HTML",
7 "language": "ja",
8}

Definition at line 10 of file niconico.py.

◆ base_url

str searx.engines.niconico.base_url = "https://www.nicovideo.jp"

Definition at line 25 of file niconico.py.

◆ categories

list searx.engines.niconico.categories = ["videos"]

Definition at line 19 of file niconico.py.

◆ content_xpath

str searx.engines.niconico.content_xpath = './/p[@class="itemDescription"]/@title'

Definition at line 33 of file niconico.py.

◆ embed_url

str searx.engines.niconico.embed_url = "https://embed.nicovideo.jp"

Definition at line 26 of file niconico.py.

◆ paging

bool searx.engines.niconico.paging = True

Definition at line 20 of file niconico.py.

◆ results_xpath

str searx.engines.niconico.results_xpath = '//li[@data-video-item]'

Definition at line 28 of file niconico.py.

◆ thumbnail_xpath

str searx.engines.niconico.thumbnail_xpath = './/img[@class="thumb"]/@src'

Definition at line 34 of file niconico.py.

◆ time_range_dict

dict searx.engines.niconico.time_range_dict = {"day": 1, "week": 7, "month": 30, "year": 365}

Definition at line 23 of file niconico.py.

◆ time_range_support

bool searx.engines.niconico.time_range_support = True

Definition at line 22 of file niconico.py.

◆ title_xpath

str searx.engines.niconico.title_xpath = './/p[@class="itemTitle"]/a'

Definition at line 32 of file niconico.py.

◆ upload_time_xpath

str searx.engines.niconico.upload_time_xpath = './/p[@class="itemTime"]//span[@class="time"]/text()'

Definition at line 31 of file niconico.py.

◆ url_xpath

str searx.engines.niconico.url_xpath = './/a[@class="itemThumbWrap"]/@href'

Definition at line 29 of file niconico.py.

◆ video_length_xpath

str searx.engines.niconico.video_length_xpath = './/span[@class="videoLength"]'

Definition at line 30 of file niconico.py.