.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
selfhst.py
Go to the documentation of this file.
1
# SPDX-License-Identifier: AGPL-3.0-or-later
2
"""selfh.st/icons - A collection of logos for self-hosted dashboards and
3
documentation"""
4
5
from
dateutil
import
parser
6
7
about = {
8
'website'
:
'https://selfh.st/icons/'
,
9
'official_api_documentation'
:
'https://selfh.st/icons-about/'
,
10
"use_official_api"
:
True
,
11
"require_api_key"
:
False
,
12
"results"
:
'JSON'
,
13
}
14
categories = [
'images'
]
15
16
17
icons_list_url =
'https://cdn.selfh.st/directory/icons.json'
18
icons_cdn_base_url =
'https://cdn.jsdelivr.net'
19
20
21
def
request
(query, params):
22
params[
'url'
] = icons_list_url
23
params[
'query'
] = query
24
return
params
25
26
27
def
response
(resp):
28
results = []
29
30
query_parts = resp.search_params[
'query'
].lower().split(
' '
)
31
for
item
in
resp.json():
32
keyword = item[
'Reference'
].lower()
33
if
not
any(query_part
in
keyword
for
query_part
in
query_parts):
34
continue
35
36
img_format =
None
37
for
format_name
in
(
'SVG'
,
'PNG'
,
'WebP'
):
38
if
item[format_name] ==
'Yes'
:
39
img_format = format_name.lower()
40
break
41
42
img_src = f
'{icons_cdn_base_url}/gh/selfhst/icons/{img_format}/{item["Reference"]}.{img_format}'
43
result = {
44
'template'
:
'images.html'
,
45
'url'
: img_src,
46
'title'
: item[
'Name'
],
47
'content'
:
''
,
48
'img_src'
: img_src,
49
'img_format'
: img_format,
50
'publishedDate'
: parser.parse(item[
'CreatedAt'
]),
51
}
52
results.append(result)
53
54
return
results
searx.engines.selfhst.request
request(query, params)
Definition
selfhst.py:21
searx.engines.selfhst.response
response(resp)
Definition
selfhst.py:27
searxng
searx
engines
selfhst.py
Generated on Mon Mar 31 2025 23:37:38 for .oO SearXNG Developer Documentation Oo. by
1.13.2