ollama_chat 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGES.md +15 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/config/searxng/settings.yml +2583 -0
- data/docker-compose.yml +21 -0
- data/lib/ollama_chat/chat.rb +3 -2
- data/lib/ollama_chat/information.rb +2 -0
- data/lib/ollama_chat/ollama_chat_config/default_config.yml +7 -0
- data/lib/ollama_chat/source_fetching.rb +0 -33
- data/lib/ollama_chat/version.rb +1 -1
- data/lib/ollama_chat/web_searching.rb +60 -0
- data/lib/ollama_chat.rb +1 -0
- data/ollama_chat.gemspec +6 -6
- data/spec/assets/searxng.json +111 -0
- data/spec/ollama_chat/chat_spec.rb +3 -1
- data/spec/ollama_chat/source_fetching_spec.rb +0 -9
- data/spec/ollama_chat/web_searching_spec.rb +29 -0
- metadata +8 -2
@@ -0,0 +1,2583 @@
|
|
1
|
+
general:
|
2
|
+
# Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
|
3
|
+
debug: false
|
4
|
+
# displayed name
|
5
|
+
instance_name: "SearXNG"
|
6
|
+
# For example: https://example.com/privacy
|
7
|
+
privacypolicy_url: false
|
8
|
+
# use true to use your own donation page written in searx/info/en/donate.md
|
9
|
+
# use false to disable the donation link
|
10
|
+
donation_url: false
|
11
|
+
# mailto:contact@example.com
|
12
|
+
contact_url: false
|
13
|
+
# record stats
|
14
|
+
enable_metrics: true
|
15
|
+
# expose stats in open metrics format at /metrics
|
16
|
+
# leave empty to disable (no password set)
|
17
|
+
# open_metrics: <password>
|
18
|
+
open_metrics: ''
|
19
|
+
|
20
|
+
brand:
|
21
|
+
new_issue_url: https://github.com/searxng/searxng/issues/new
|
22
|
+
docs_url: https://docs.searxng.org/
|
23
|
+
public_instances: https://searx.space
|
24
|
+
wiki_url: https://github.com/searxng/searxng/wiki
|
25
|
+
issue_url: https://github.com/searxng/searxng/issues
|
26
|
+
# custom:
|
27
|
+
# maintainer: "Jon Doe"
|
28
|
+
# # Custom entries in the footer: [title]: [link]
|
29
|
+
# links:
|
30
|
+
# Uptime: https://uptime.searxng.org/history/darmarit-org
|
31
|
+
# About: "https://searxng.org"
|
32
|
+
|
33
|
+
search:
|
34
|
+
# Filter results. 0: None, 1: Moderate, 2: Strict
|
35
|
+
safe_search: 0
|
36
|
+
# Existing autocomplete backends: "baidu", "brave", "dbpedia", "duckduckgo", "google", "yandex",
|
37
|
+
# "mwmbl", "seznam", "stract", "swisscows", "qwant", "wikipedia" -
|
38
|
+
# leave blank to turn it off by default.
|
39
|
+
autocomplete: ""
|
40
|
+
# minimun characters to type before autocompleter starts
|
41
|
+
autocomplete_min: 4
|
42
|
+
# backend for the favicon near URL in search results.
|
43
|
+
# Available resolvers: "allesedv", "duckduckgo", "google", "yandex" - leave blank to turn it off by default.
|
44
|
+
favicon_resolver: ""
|
45
|
+
# Default search language - leave blank to detect from browser information or
|
46
|
+
# use codes from 'languages.py'
|
47
|
+
default_lang: "auto"
|
48
|
+
# max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages
|
49
|
+
# Available languages
|
50
|
+
# languages:
|
51
|
+
# - all
|
52
|
+
# - en
|
53
|
+
# - en-US
|
54
|
+
# - de
|
55
|
+
# - it-IT
|
56
|
+
# - fr
|
57
|
+
# - fr-BE
|
58
|
+
# ban time in seconds after engine errors
|
59
|
+
ban_time_on_fail: 5
|
60
|
+
# max ban time in seconds after engine errors
|
61
|
+
max_ban_time_on_fail: 120
|
62
|
+
suspended_times:
|
63
|
+
# Engine suspension time after error (in seconds; set to 0 to disable)
|
64
|
+
# For error "Access denied" and "HTTP error [402, 403]"
|
65
|
+
SearxEngineAccessDenied: 86400
|
66
|
+
# For error "CAPTCHA"
|
67
|
+
SearxEngineCaptcha: 86400
|
68
|
+
# For error "Too many request" and "HTTP error 429"
|
69
|
+
SearxEngineTooManyRequests: 3600
|
70
|
+
# Cloudflare CAPTCHA
|
71
|
+
cf_SearxEngineCaptcha: 1296000
|
72
|
+
cf_SearxEngineAccessDenied: 86400
|
73
|
+
# ReCAPTCHA
|
74
|
+
recaptcha_SearxEngineCaptcha: 604800
|
75
|
+
|
76
|
+
# remove format to deny access, use lower case.
|
77
|
+
# formats: [html, csv, json, rss]
|
78
|
+
formats:
|
79
|
+
- html
|
80
|
+
- json
|
81
|
+
|
82
|
+
server:
|
83
|
+
# Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS}
|
84
|
+
port: 8888
|
85
|
+
bind_address: "127.0.0.1"
|
86
|
+
# public URL of the instance, to ensure correct inbound links. Is overwritten
|
87
|
+
# by ${SEARXNG_URL}.
|
88
|
+
base_url: false # "http://example.com/location"
|
89
|
+
# rate limit the number of request on the instance, block some bots.
|
90
|
+
# Is overwritten by ${SEARXNG_LIMITER}
|
91
|
+
limiter: false
|
92
|
+
# enable features designed only for public instances.
|
93
|
+
# Is overwritten by ${SEARXNG_PUBLIC_INSTANCE}
|
94
|
+
public_instance: false
|
95
|
+
|
96
|
+
# If your instance owns a /etc/searxng/settings.yml file, then set the following
|
97
|
+
# values there.
|
98
|
+
|
99
|
+
secret_key: "8KCy5WvomRLioQxwiAJxwzQqN0wktpGXxqwPFHqBXMC" # Is overwritten by ${SEARXNG_SECRET}
|
100
|
+
# Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY}
|
101
|
+
image_proxy: false
|
102
|
+
# 1.0 and 1.1 are supported
|
103
|
+
http_protocol_version: "1.0"
|
104
|
+
# POST queries are more secure as they don't show up in history but may cause
|
105
|
+
# problems when using Firefox containers
|
106
|
+
method: "POST"
|
107
|
+
default_http_headers:
|
108
|
+
X-Content-Type-Options: nosniff
|
109
|
+
X-Download-Options: noopen
|
110
|
+
X-Robots-Tag: noindex, nofollow
|
111
|
+
Referrer-Policy: no-referrer
|
112
|
+
|
113
|
+
redis:
|
114
|
+
# URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
|
115
|
+
# https://docs.searxng.org/admin/settings/settings_redis.html#settings-redis
|
116
|
+
url: false
|
117
|
+
|
118
|
+
ui:
|
119
|
+
# Custom static path - leave it blank if you didn't change
|
120
|
+
static_path: ""
|
121
|
+
# Is overwritten by ${SEARXNG_STATIC_USE_HASH}.
|
122
|
+
static_use_hash: false
|
123
|
+
# Custom templates path - leave it blank if you didn't change
|
124
|
+
templates_path: ""
|
125
|
+
# query_in_title: When true, the result page's titles contains the query
|
126
|
+
# it decreases the privacy, since the browser can records the page titles.
|
127
|
+
query_in_title: false
|
128
|
+
# infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
|
129
|
+
infinite_scroll: false
|
130
|
+
# ui theme
|
131
|
+
default_theme: simple
|
132
|
+
# center the results ?
|
133
|
+
center_alignment: false
|
134
|
+
# URL prefix of the internet archive, don't forget trailing slash (if needed).
|
135
|
+
# cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
|
136
|
+
# Default interface locale - leave blank to detect from browser information or
|
137
|
+
# use codes from the 'locales' config section
|
138
|
+
default_locale: ""
|
139
|
+
# Open result links in a new tab by default
|
140
|
+
# results_on_new_tab: false
|
141
|
+
theme_args:
|
142
|
+
# style of simple theme: auto, light, dark
|
143
|
+
simple_style: auto
|
144
|
+
# Perform search immediately if a category selected.
|
145
|
+
# Disable to select multiple categories at once and start the search manually.
|
146
|
+
search_on_category_select: true
|
147
|
+
# Hotkeys: default or vim
|
148
|
+
hotkeys: default
|
149
|
+
# URL formatting: pretty, full or host
|
150
|
+
url_formatting: pretty
|
151
|
+
|
152
|
+
# Lock arbitrary settings on the preferences page.
|
153
|
+
#
|
154
|
+
# preferences:
|
155
|
+
# lock:
|
156
|
+
# - categories
|
157
|
+
# - language
|
158
|
+
# - autocomplete
|
159
|
+
# - favicon
|
160
|
+
# - safesearch
|
161
|
+
# - method
|
162
|
+
# - doi_resolver
|
163
|
+
# - locale
|
164
|
+
# - theme
|
165
|
+
# - results_on_new_tab
|
166
|
+
# - infinite_scroll
|
167
|
+
# - search_on_category_select
|
168
|
+
# - method
|
169
|
+
# - image_proxy
|
170
|
+
# - query_in_title
|
171
|
+
|
172
|
+
# searx supports result proxification using an external service:
|
173
|
+
# https://github.com/asciimoo/morty uncomment below section if you have running
|
174
|
+
# morty proxy the key is base64 encoded (keep the !!binary notation)
|
175
|
+
# Note: since commit af77ec3, morty accepts a base64 encoded key.
|
176
|
+
#
|
177
|
+
# result_proxy:
|
178
|
+
# url: http://127.0.0.1:3000/
|
179
|
+
# # the key is a base64 encoded string, the YAML !!binary prefix is optional
|
180
|
+
# key: !!binary "your_morty_proxy_key"
|
181
|
+
# # [true|false] enable the "proxy" button next to each result
|
182
|
+
# proxify_results: true
|
183
|
+
|
184
|
+
# communication with search engines
|
185
|
+
#
|
186
|
+
outgoing:
|
187
|
+
# default timeout in seconds, can be override by engine
|
188
|
+
request_timeout: 3.0
|
189
|
+
# the maximum timeout in seconds
|
190
|
+
# max_request_timeout: 10.0
|
191
|
+
# suffix of searx_useragent, could contain information like an email address
|
192
|
+
# to the administrator
|
193
|
+
useragent_suffix: ""
|
194
|
+
# The maximum number of concurrent connections that may be established.
|
195
|
+
pool_connections: 100
|
196
|
+
# Allow the connection pool to maintain keep-alive connections below this
|
197
|
+
# point.
|
198
|
+
pool_maxsize: 20
|
199
|
+
# See https://www.python-httpx.org/http2/
|
200
|
+
enable_http2: true
|
201
|
+
# uncomment below section if you want to use a custom server certificate
|
202
|
+
# see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
|
203
|
+
# and https://www.python-httpx.org/compatibility/#ssl-configuration
|
204
|
+
# verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
|
205
|
+
#
|
206
|
+
# uncomment below section if you want to use a proxyq see: SOCKS proxies
|
207
|
+
# https://2.python-requests.org/en/latest/user/advanced/#proxies
|
208
|
+
# are also supported: see
|
209
|
+
# https://2.python-requests.org/en/latest/user/advanced/#socks
|
210
|
+
#
|
211
|
+
# proxies:
|
212
|
+
# all://:
|
213
|
+
# - http://proxy1:8080
|
214
|
+
# - http://proxy2:8080
|
215
|
+
#
|
216
|
+
# using_tor_proxy: true
|
217
|
+
#
|
218
|
+
# Extra seconds to add in order to account for the time taken by the proxy
|
219
|
+
#
|
220
|
+
# extra_proxy_timeout: 10
|
221
|
+
#
|
222
|
+
# uncomment below section only if you have more than one network interface
|
223
|
+
# which can be the source of outgoing search requests
|
224
|
+
#
|
225
|
+
# source_ips:
|
226
|
+
# - 1.1.1.1
|
227
|
+
# - 1.1.1.2
|
228
|
+
# - fe80::/126
|
229
|
+
|
230
|
+
# External plugin configuration, for more details see
|
231
|
+
# https://docs.searxng.org/admin/settings/settings_plugins.html
|
232
|
+
#
|
233
|
+
# plugins:
|
234
|
+
# - mypackage.mymodule.MyPlugin
|
235
|
+
# - mypackage.mymodule.MyOtherPlugin
|
236
|
+
# - ...
|
237
|
+
|
238
|
+
# Comment or un-comment plugin to activate / deactivate by default.
|
239
|
+
# https://docs.searxng.org/admin/settings/settings_plugins.html
|
240
|
+
#
|
241
|
+
# enabled_plugins:
|
242
|
+
# # these plugins are enabled if nothing is configured ..
|
243
|
+
# - 'Basic Calculator'
|
244
|
+
# - 'Hash plugin'
|
245
|
+
# - 'Self Information'
|
246
|
+
# - 'Tracker URL remover'
|
247
|
+
# - 'Unit converter plugin'
|
248
|
+
# - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
|
249
|
+
# # these plugins are disabled if nothing is configured ..
|
250
|
+
# - 'Hostnames plugin' # see 'hostnames' configuration below
|
251
|
+
# - 'Open Access DOI rewrite'
|
252
|
+
# - 'Tor check plugin'
|
253
|
+
|
254
|
+
# Configuration of the "Hostnames plugin":
|
255
|
+
#
|
256
|
+
# hostnames:
|
257
|
+
# replace:
|
258
|
+
# '(.*\.)?youtube\.com$': 'invidious.example.com'
|
259
|
+
# '(.*\.)?youtu\.be$': 'invidious.example.com'
|
260
|
+
# '(.*\.)?reddit\.com$': 'teddit.example.com'
|
261
|
+
# '(.*\.)?redd\.it$': 'teddit.example.com'
|
262
|
+
# '(www\.)?twitter\.com$': 'nitter.example.com'
|
263
|
+
# remove:
|
264
|
+
# - '(.*\.)?facebook.com$'
|
265
|
+
# low_priority:
|
266
|
+
# - '(.*\.)?google(\..*)?$'
|
267
|
+
# high_priority:
|
268
|
+
# - '(.*\.)?wikipedia.org$'
|
269
|
+
#
|
270
|
+
# Alternatively you can use external files for configuring the "Hostnames plugin":
|
271
|
+
#
|
272
|
+
# hostnames:
|
273
|
+
# replace: 'rewrite-hosts.yml'
|
274
|
+
#
|
275
|
+
# Content of 'rewrite-hosts.yml' (place the file in the same directory as 'settings.yml'):
|
276
|
+
# '(.*\.)?youtube\.com$': 'invidious.example.com'
|
277
|
+
# '(.*\.)?youtu\.be$': 'invidious.example.com'
|
278
|
+
#
|
279
|
+
|
280
|
+
checker:
|
281
|
+
# disable checker when in debug mode
|
282
|
+
off_when_debug: true
|
283
|
+
|
284
|
+
# use "scheduling: false" to disable scheduling
|
285
|
+
# scheduling: interval or int
|
286
|
+
|
287
|
+
# to activate the scheduler:
|
288
|
+
# * uncomment "scheduling" section
|
289
|
+
# * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
|
290
|
+
# to your uwsgi.ini
|
291
|
+
|
292
|
+
# scheduling:
|
293
|
+
# start_after: [300, 1800] # delay to start the first run of the checker
|
294
|
+
# every: [86400, 90000] # how often the checker runs
|
295
|
+
|
296
|
+
# additional tests: only for the YAML anchors (see the engines section)
|
297
|
+
#
|
298
|
+
additional_tests:
|
299
|
+
rosebud: &test_rosebud
|
300
|
+
matrix:
|
301
|
+
query: rosebud
|
302
|
+
lang: en
|
303
|
+
result_container:
|
304
|
+
- not_empty
|
305
|
+
- ['one_title_contains', 'citizen kane']
|
306
|
+
test:
|
307
|
+
- unique_results
|
308
|
+
|
309
|
+
android: &test_android
|
310
|
+
matrix:
|
311
|
+
query: ['android']
|
312
|
+
lang: ['en', 'de', 'fr', 'zh-CN']
|
313
|
+
result_container:
|
314
|
+
- not_empty
|
315
|
+
- ['one_title_contains', 'google']
|
316
|
+
test:
|
317
|
+
- unique_results
|
318
|
+
|
319
|
+
# tests: only for the YAML anchors (see the engines section)
|
320
|
+
tests:
|
321
|
+
infobox: &tests_infobox
|
322
|
+
infobox:
|
323
|
+
matrix:
|
324
|
+
query: ["linux", "new york", "bbc"]
|
325
|
+
result_container:
|
326
|
+
- has_infobox
|
327
|
+
|
328
|
+
categories_as_tabs:
|
329
|
+
general:
|
330
|
+
images:
|
331
|
+
videos:
|
332
|
+
news:
|
333
|
+
map:
|
334
|
+
music:
|
335
|
+
it:
|
336
|
+
science:
|
337
|
+
files:
|
338
|
+
social media:
|
339
|
+
|
340
|
+
engines:
|
341
|
+
- name: 9gag
|
342
|
+
engine: 9gag
|
343
|
+
shortcut: 9g
|
344
|
+
disabled: true
|
345
|
+
|
346
|
+
- name: adobe stock
|
347
|
+
engine: adobe_stock
|
348
|
+
shortcut: asi
|
349
|
+
categories: ["images"]
|
350
|
+
# https://docs.searxng.org/dev/engines/online/adobe_stock.html
|
351
|
+
adobe_order: relevance
|
352
|
+
adobe_content_types: ["photo", "illustration", "zip_vector", "template", "3d", "image"]
|
353
|
+
timeout: 6
|
354
|
+
disabled: true
|
355
|
+
|
356
|
+
- name: adobe stock video
|
357
|
+
engine: adobe_stock
|
358
|
+
shortcut: asv
|
359
|
+
network: adobe stock
|
360
|
+
categories: ["videos"]
|
361
|
+
adobe_order: relevance
|
362
|
+
adobe_content_types: ["video"]
|
363
|
+
timeout: 6
|
364
|
+
disabled: true
|
365
|
+
|
366
|
+
- name: adobe stock audio
|
367
|
+
engine: adobe_stock
|
368
|
+
shortcut: asa
|
369
|
+
network: adobe stock
|
370
|
+
categories: ["music"]
|
371
|
+
adobe_order: relevance
|
372
|
+
adobe_content_types: ["audio"]
|
373
|
+
timeout: 6
|
374
|
+
disabled: true
|
375
|
+
|
376
|
+
- name: alexandria
|
377
|
+
engine: json_engine
|
378
|
+
shortcut: alx
|
379
|
+
categories: general
|
380
|
+
paging: true
|
381
|
+
search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
|
382
|
+
results_query: results
|
383
|
+
title_query: title
|
384
|
+
url_query: url
|
385
|
+
content_query: snippet
|
386
|
+
timeout: 1.5
|
387
|
+
disabled: true
|
388
|
+
about:
|
389
|
+
website: https://alexandria.org/
|
390
|
+
official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
|
391
|
+
use_official_api: true
|
392
|
+
require_api_key: false
|
393
|
+
results: JSON
|
394
|
+
|
395
|
+
# - name: astrophysics data system
|
396
|
+
# engine: astrophysics_data_system
|
397
|
+
# sort: asc
|
398
|
+
# weight: 5
|
399
|
+
# categories: [science]
|
400
|
+
# api_key: your-new-key
|
401
|
+
# shortcut: ads
|
402
|
+
|
403
|
+
- name: alpine linux packages
|
404
|
+
engine: alpinelinux
|
405
|
+
disabled: true
|
406
|
+
shortcut: alp
|
407
|
+
|
408
|
+
- name: annas archive
|
409
|
+
engine: annas_archive
|
410
|
+
disabled: true
|
411
|
+
shortcut: aa
|
412
|
+
|
413
|
+
# - name: annas articles
|
414
|
+
# engine: annas_archive
|
415
|
+
# shortcut: aaa
|
416
|
+
# # https://docs.searxng.org/dev/engines/online/annas_archive.html
|
417
|
+
# aa_content: 'magazine' # book_fiction, book_unknown, book_nonfiction, book_comic
|
418
|
+
# aa_ext: 'pdf' # pdf, epub, ..
|
419
|
+
# aa_sort: oldest' # newest, oldest, largest, smallest
|
420
|
+
|
421
|
+
- name: apk mirror
|
422
|
+
engine: apkmirror
|
423
|
+
timeout: 4.0
|
424
|
+
shortcut: apkm
|
425
|
+
disabled: true
|
426
|
+
|
427
|
+
- name: apple app store
|
428
|
+
engine: apple_app_store
|
429
|
+
shortcut: aps
|
430
|
+
disabled: true
|
431
|
+
|
432
|
+
# Requires Tor
|
433
|
+
- name: ahmia
|
434
|
+
engine: ahmia
|
435
|
+
categories: onions
|
436
|
+
enable_http: true
|
437
|
+
shortcut: ah
|
438
|
+
|
439
|
+
- name: anaconda
|
440
|
+
engine: xpath
|
441
|
+
paging: true
|
442
|
+
first_page_num: 0
|
443
|
+
search_url: https://anaconda.org/search?q={query}&page={pageno}
|
444
|
+
results_xpath: //tbody/tr
|
445
|
+
url_xpath: ./td/h5/a[last()]/@href
|
446
|
+
title_xpath: ./td/h5
|
447
|
+
content_xpath: ./td[h5]/text()
|
448
|
+
categories: it
|
449
|
+
timeout: 6.0
|
450
|
+
shortcut: conda
|
451
|
+
disabled: true
|
452
|
+
|
453
|
+
- name: arch linux wiki
|
454
|
+
engine: archlinux
|
455
|
+
shortcut: al
|
456
|
+
|
457
|
+
- name: nixos wiki
|
458
|
+
engine: mediawiki
|
459
|
+
shortcut: nixw
|
460
|
+
base_url: https://wiki.nixos.org/
|
461
|
+
search_type: text
|
462
|
+
disabled: true
|
463
|
+
categories: [it, software wikis]
|
464
|
+
|
465
|
+
- name: artic
|
466
|
+
engine: artic
|
467
|
+
shortcut: arc
|
468
|
+
timeout: 4.0
|
469
|
+
|
470
|
+
- name: arxiv
|
471
|
+
engine: arxiv
|
472
|
+
shortcut: arx
|
473
|
+
timeout: 4.0
|
474
|
+
|
475
|
+
- name: ask
|
476
|
+
engine: ask
|
477
|
+
shortcut: ask
|
478
|
+
disabled: true
|
479
|
+
|
480
|
+
# tmp suspended: dh key too small
|
481
|
+
# - name: base
|
482
|
+
# engine: base
|
483
|
+
# shortcut: bs
|
484
|
+
|
485
|
+
- name: bandcamp
|
486
|
+
engine: bandcamp
|
487
|
+
shortcut: bc
|
488
|
+
categories: music
|
489
|
+
|
490
|
+
- name: wikipedia
|
491
|
+
engine: wikipedia
|
492
|
+
shortcut: wp
|
493
|
+
# add "list" to the array to get results in the results list
|
494
|
+
display_type: ["infobox"]
|
495
|
+
categories: [general]
|
496
|
+
|
497
|
+
- name: bilibili
|
498
|
+
engine: bilibili
|
499
|
+
shortcut: bil
|
500
|
+
disabled: true
|
501
|
+
|
502
|
+
- name: bing
|
503
|
+
engine: bing
|
504
|
+
shortcut: bi
|
505
|
+
disabled: true
|
506
|
+
|
507
|
+
- name: bing images
|
508
|
+
engine: bing_images
|
509
|
+
shortcut: bii
|
510
|
+
|
511
|
+
- name: bing news
|
512
|
+
engine: bing_news
|
513
|
+
shortcut: bin
|
514
|
+
|
515
|
+
- name: bing videos
|
516
|
+
engine: bing_videos
|
517
|
+
shortcut: biv
|
518
|
+
|
519
|
+
- name: bitbucket
|
520
|
+
engine: xpath
|
521
|
+
paging: true
|
522
|
+
search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
|
523
|
+
url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
|
524
|
+
title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
|
525
|
+
content_xpath: //article[@class="repo-summary"]/p
|
526
|
+
categories: [it, repos]
|
527
|
+
timeout: 4.0
|
528
|
+
disabled: true
|
529
|
+
shortcut: bb
|
530
|
+
about:
|
531
|
+
website: https://bitbucket.org/
|
532
|
+
wikidata_id: Q2493781
|
533
|
+
official_api_documentation: https://developer.atlassian.com/bitbucket
|
534
|
+
use_official_api: false
|
535
|
+
require_api_key: false
|
536
|
+
results: HTML
|
537
|
+
|
538
|
+
- name: bpb
|
539
|
+
engine: bpb
|
540
|
+
shortcut: bpb
|
541
|
+
disabled: true
|
542
|
+
|
543
|
+
- name: btdigg
|
544
|
+
engine: btdigg
|
545
|
+
shortcut: bt
|
546
|
+
disabled: true
|
547
|
+
|
548
|
+
- name: openverse
|
549
|
+
engine: openverse
|
550
|
+
categories: images
|
551
|
+
shortcut: opv
|
552
|
+
|
553
|
+
- name: media.ccc.de
|
554
|
+
engine: ccc_media
|
555
|
+
shortcut: c3tv
|
556
|
+
# We don't set language: de here because media.ccc.de is not just
|
557
|
+
# for a German audience. It contains many English videos and many
|
558
|
+
# German videos have English subtitles.
|
559
|
+
disabled: true
|
560
|
+
|
561
|
+
- name: chefkoch
|
562
|
+
engine: chefkoch
|
563
|
+
shortcut: chef
|
564
|
+
# to show premium or plus results too:
|
565
|
+
# skip_premium: false
|
566
|
+
|
567
|
+
- name: cloudflareai
|
568
|
+
engine: cloudflareai
|
569
|
+
shortcut: cfai
|
570
|
+
# get api token and accont id from https://developers.cloudflare.com/workers-ai/get-started/rest-api/
|
571
|
+
cf_account_id: 'your_cf_accout_id'
|
572
|
+
cf_ai_api: 'your_cf_api'
|
573
|
+
# create your ai gateway by https://developers.cloudflare.com/ai-gateway/get-started/creating-gateway/
|
574
|
+
cf_ai_gateway: 'your_cf_ai_gateway_name'
|
575
|
+
# find the model name from https://developers.cloudflare.com/workers-ai/models/#text-generation
|
576
|
+
cf_ai_model: 'ai_model_name'
|
577
|
+
# custom your preferences
|
578
|
+
# cf_ai_model_display_name: 'Cloudflare AI'
|
579
|
+
# cf_ai_model_assistant: 'prompts_for_assistant_role'
|
580
|
+
# cf_ai_model_system: 'prompts_for_system_role'
|
581
|
+
timeout: 30
|
582
|
+
disabled: true
|
583
|
+
|
584
|
+
# - name: core.ac.uk
|
585
|
+
# engine: core
|
586
|
+
# categories: science
|
587
|
+
# shortcut: cor
|
588
|
+
# # get your API key from: https://core.ac.uk/api-keys/register/
|
589
|
+
# api_key: 'unset'
|
590
|
+
|
591
|
+
- name: cppreference
|
592
|
+
engine: cppreference
|
593
|
+
shortcut: cpp
|
594
|
+
paging: false
|
595
|
+
disabled: true
|
596
|
+
|
597
|
+
- name: crossref
|
598
|
+
engine: crossref
|
599
|
+
shortcut: cr
|
600
|
+
timeout: 30
|
601
|
+
disabled: true
|
602
|
+
|
603
|
+
- name: crowdview
|
604
|
+
engine: json_engine
|
605
|
+
shortcut: cv
|
606
|
+
categories: general
|
607
|
+
paging: false
|
608
|
+
search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
|
609
|
+
results_query: results
|
610
|
+
url_query: link
|
611
|
+
title_query: title
|
612
|
+
content_query: snippet
|
613
|
+
title_html_to_text: true
|
614
|
+
content_html_to_text: true
|
615
|
+
disabled: true
|
616
|
+
about:
|
617
|
+
website: https://crowdview.ai/
|
618
|
+
|
619
|
+
- name: yep
|
620
|
+
engine: yep
|
621
|
+
shortcut: yep
|
622
|
+
categories: general
|
623
|
+
search_type: web
|
624
|
+
timeout: 5
|
625
|
+
disabled: true
|
626
|
+
|
627
|
+
- name: yep images
|
628
|
+
engine: yep
|
629
|
+
shortcut: yepi
|
630
|
+
categories: images
|
631
|
+
search_type: images
|
632
|
+
disabled: true
|
633
|
+
|
634
|
+
- name: yep news
|
635
|
+
engine: yep
|
636
|
+
shortcut: yepn
|
637
|
+
categories: news
|
638
|
+
search_type: news
|
639
|
+
disabled: true
|
640
|
+
|
641
|
+
- name: curlie
|
642
|
+
engine: xpath
|
643
|
+
shortcut: cl
|
644
|
+
categories: general
|
645
|
+
disabled: true
|
646
|
+
paging: true
|
647
|
+
lang_all: ''
|
648
|
+
search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
|
649
|
+
page_size: 20
|
650
|
+
results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
|
651
|
+
url_xpath: ./div[@class="title-and-desc"]/a/@href
|
652
|
+
title_xpath: ./div[@class="title-and-desc"]/a/div
|
653
|
+
content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
|
654
|
+
about:
|
655
|
+
website: https://curlie.org/
|
656
|
+
wikidata_id: Q60715723
|
657
|
+
use_official_api: false
|
658
|
+
require_api_key: false
|
659
|
+
results: HTML
|
660
|
+
|
661
|
+
- name: currency
|
662
|
+
engine: currency_convert
|
663
|
+
categories: general
|
664
|
+
shortcut: cc
|
665
|
+
|
666
|
+
- name: deezer
|
667
|
+
engine: deezer
|
668
|
+
shortcut: dz
|
669
|
+
disabled: true
|
670
|
+
|
671
|
+
- name: destatis
|
672
|
+
engine: destatis
|
673
|
+
shortcut: destat
|
674
|
+
disabled: true
|
675
|
+
|
676
|
+
- name: deviantart
|
677
|
+
engine: deviantart
|
678
|
+
shortcut: da
|
679
|
+
timeout: 3.0
|
680
|
+
|
681
|
+
- name: ddg definitions
|
682
|
+
engine: duckduckgo_definitions
|
683
|
+
shortcut: ddd
|
684
|
+
weight: 2
|
685
|
+
disabled: true
|
686
|
+
tests: *tests_infobox
|
687
|
+
|
688
|
+
# cloudflare protected
|
689
|
+
# - name: digbt
|
690
|
+
# engine: digbt
|
691
|
+
# shortcut: dbt
|
692
|
+
# timeout: 6.0
|
693
|
+
# disabled: true
|
694
|
+
|
695
|
+
- name: docker hub
|
696
|
+
engine: docker_hub
|
697
|
+
shortcut: dh
|
698
|
+
categories: [it, packages]
|
699
|
+
|
700
|
+
- name: encyclosearch
|
701
|
+
engine: json_engine
|
702
|
+
shortcut: es
|
703
|
+
categories: general
|
704
|
+
paging: true
|
705
|
+
search_url: https://encyclosearch.org/encyclosphere/search?q={query}&page={pageno}&resultsPerPage=15
|
706
|
+
results_query: Results
|
707
|
+
url_query: SourceURL
|
708
|
+
title_query: Title
|
709
|
+
content_query: Description
|
710
|
+
disabled: true
|
711
|
+
about:
|
712
|
+
website: https://encyclosearch.org
|
713
|
+
official_api_documentation: https://encyclosearch.org/docs/#/rest-api
|
714
|
+
use_official_api: true
|
715
|
+
require_api_key: false
|
716
|
+
results: JSON
|
717
|
+
|
718
|
+
- name: erowid
|
719
|
+
engine: xpath
|
720
|
+
paging: true
|
721
|
+
first_page_num: 0
|
722
|
+
page_size: 30
|
723
|
+
search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
|
724
|
+
url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
|
725
|
+
title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
|
726
|
+
content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
|
727
|
+
categories: []
|
728
|
+
shortcut: ew
|
729
|
+
disabled: true
|
730
|
+
about:
|
731
|
+
website: https://www.erowid.org/
|
732
|
+
wikidata_id: Q1430691
|
733
|
+
official_api_documentation:
|
734
|
+
use_official_api: false
|
735
|
+
require_api_key: false
|
736
|
+
results: HTML
|
737
|
+
|
738
|
+
# - name: elasticsearch
|
739
|
+
# shortcut: es
|
740
|
+
# engine: elasticsearch
|
741
|
+
# base_url: http://localhost:9200
|
742
|
+
# username: elastic
|
743
|
+
# password: changeme
|
744
|
+
# index: my-index
|
745
|
+
# # available options: match, simple_query_string, term, terms, custom
|
746
|
+
# query_type: match
|
747
|
+
# # if query_type is set to custom, provide your query here
|
748
|
+
# #custom_query_json: {"query":{"match_all": {}}}
|
749
|
+
# #show_metadata: false
|
750
|
+
# disabled: true
|
751
|
+
|
752
|
+
- name: wikidata
|
753
|
+
engine: wikidata
|
754
|
+
shortcut: wd
|
755
|
+
timeout: 3.0
|
756
|
+
weight: 2
|
757
|
+
# add "list" to the array to get results in the results list
|
758
|
+
display_type: ["infobox"]
|
759
|
+
tests: *tests_infobox
|
760
|
+
categories: [general]
|
761
|
+
|
762
|
+
- name: duckduckgo
|
763
|
+
engine: duckduckgo
|
764
|
+
shortcut: ddg
|
765
|
+
|
766
|
+
- name: duckduckgo images
|
767
|
+
engine: duckduckgo_extra
|
768
|
+
categories: [images, web]
|
769
|
+
ddg_category: images
|
770
|
+
shortcut: ddi
|
771
|
+
disabled: true
|
772
|
+
|
773
|
+
- name: duckduckgo videos
|
774
|
+
engine: duckduckgo_extra
|
775
|
+
categories: [videos, web]
|
776
|
+
ddg_category: videos
|
777
|
+
shortcut: ddv
|
778
|
+
disabled: true
|
779
|
+
|
780
|
+
- name: duckduckgo news
|
781
|
+
engine: duckduckgo_extra
|
782
|
+
categories: [news, web]
|
783
|
+
ddg_category: news
|
784
|
+
shortcut: ddn
|
785
|
+
disabled: true
|
786
|
+
|
787
|
+
- name: duckduckgo weather
|
788
|
+
engine: duckduckgo_weather
|
789
|
+
shortcut: ddw
|
790
|
+
disabled: true
|
791
|
+
|
792
|
+
- name: apple maps
|
793
|
+
engine: apple_maps
|
794
|
+
shortcut: apm
|
795
|
+
disabled: true
|
796
|
+
timeout: 5.0
|
797
|
+
|
798
|
+
- name: emojipedia
|
799
|
+
engine: emojipedia
|
800
|
+
timeout: 4.0
|
801
|
+
shortcut: em
|
802
|
+
disabled: true
|
803
|
+
|
804
|
+
- name: tineye
|
805
|
+
engine: tineye
|
806
|
+
shortcut: tin
|
807
|
+
timeout: 9.0
|
808
|
+
disabled: true
|
809
|
+
|
810
|
+
- name: etymonline
|
811
|
+
engine: xpath
|
812
|
+
paging: true
|
813
|
+
search_url: https://etymonline.com/search?page={pageno}&q={query}
|
814
|
+
url_xpath: //a[contains(@class, "word__name--")]/@href
|
815
|
+
title_xpath: //a[contains(@class, "word__name--")]
|
816
|
+
content_xpath: //section[contains(@class, "word__defination")]
|
817
|
+
first_page_num: 1
|
818
|
+
shortcut: et
|
819
|
+
categories: [dictionaries]
|
820
|
+
about:
|
821
|
+
website: https://www.etymonline.com/
|
822
|
+
wikidata_id: Q1188617
|
823
|
+
official_api_documentation:
|
824
|
+
use_official_api: false
|
825
|
+
require_api_key: false
|
826
|
+
results: HTML
|
827
|
+
|
828
|
+
# - name: ebay
|
829
|
+
# engine: ebay
|
830
|
+
# shortcut: eb
|
831
|
+
# base_url: 'https://www.ebay.com'
|
832
|
+
# disabled: true
|
833
|
+
# timeout: 5
|
834
|
+
|
835
|
+
- name: 1x
|
836
|
+
engine: www1x
|
837
|
+
shortcut: 1x
|
838
|
+
timeout: 3.0
|
839
|
+
disabled: true
|
840
|
+
|
841
|
+
- name: fdroid
|
842
|
+
engine: fdroid
|
843
|
+
shortcut: fd
|
844
|
+
disabled: true
|
845
|
+
|
846
|
+
- name: findthatmeme
|
847
|
+
engine: findthatmeme
|
848
|
+
shortcut: ftm
|
849
|
+
disabled: true
|
850
|
+
|
851
|
+
- name: flickr
|
852
|
+
categories: images
|
853
|
+
shortcut: fl
|
854
|
+
# You can use the engine using the official stable API, but you need an API
|
855
|
+
# key, see: https://www.flickr.com/services/apps/create/
|
856
|
+
# engine: flickr
|
857
|
+
# api_key: 'apikey' # required!
|
858
|
+
# Or you can use the html non-stable engine, activated by default
|
859
|
+
engine: flickr_noapi
|
860
|
+
|
861
|
+
- name: free software directory
|
862
|
+
engine: mediawiki
|
863
|
+
shortcut: fsd
|
864
|
+
categories: [it, software wikis]
|
865
|
+
base_url: https://directory.fsf.org/
|
866
|
+
search_type: title
|
867
|
+
timeout: 5.0
|
868
|
+
disabled: true
|
869
|
+
about:
|
870
|
+
website: https://directory.fsf.org/
|
871
|
+
wikidata_id: Q2470288
|
872
|
+
|
873
|
+
# - name: freesound
|
874
|
+
# engine: freesound
|
875
|
+
# shortcut: fnd
|
876
|
+
# disabled: true
|
877
|
+
# timeout: 15.0
|
878
|
+
# API key required, see: https://freesound.org/docs/api/overview.html
|
879
|
+
# api_key: MyAPIkey
|
880
|
+
|
881
|
+
- name: frinkiac
|
882
|
+
engine: frinkiac
|
883
|
+
shortcut: frk
|
884
|
+
disabled: true
|
885
|
+
|
886
|
+
- name: fyyd
|
887
|
+
engine: fyyd
|
888
|
+
shortcut: fy
|
889
|
+
timeout: 8.0
|
890
|
+
disabled: true
|
891
|
+
|
892
|
+
- name: geizhals
|
893
|
+
engine: geizhals
|
894
|
+
shortcut: geiz
|
895
|
+
disabled: true
|
896
|
+
|
897
|
+
- name: genius
|
898
|
+
engine: genius
|
899
|
+
shortcut: gen
|
900
|
+
|
901
|
+
- name: gentoo
|
902
|
+
engine: mediawiki
|
903
|
+
shortcut: ge
|
904
|
+
categories: ["it", "software wikis"]
|
905
|
+
base_url: "https://wiki.gentoo.org/"
|
906
|
+
api_path: "api.php"
|
907
|
+
search_type: text
|
908
|
+
timeout: 10
|
909
|
+
|
910
|
+
- name: gitlab
|
911
|
+
engine: gitlab
|
912
|
+
base_url: https://gitlab.com
|
913
|
+
shortcut: gl
|
914
|
+
disabled: true
|
915
|
+
about:
|
916
|
+
website: https://gitlab.com/
|
917
|
+
wikidata_id: Q16639197
|
918
|
+
|
919
|
+
# - name: gnome
|
920
|
+
# engine: gitlab
|
921
|
+
# base_url: https://gitlab.gnome.org
|
922
|
+
# shortcut: gn
|
923
|
+
# about:
|
924
|
+
# website: https://gitlab.gnome.org
|
925
|
+
# wikidata_id: Q44316
|
926
|
+
|
927
|
+
- name: github
|
928
|
+
engine: github
|
929
|
+
shortcut: gh
|
930
|
+
|
931
|
+
- name: codeberg
|
932
|
+
# https://docs.searxng.org/dev/engines/online/gitea.html
|
933
|
+
engine: gitea
|
934
|
+
base_url: https://codeberg.org
|
935
|
+
shortcut: cb
|
936
|
+
disabled: true
|
937
|
+
|
938
|
+
- name: gitea.com
|
939
|
+
engine: gitea
|
940
|
+
base_url: https://gitea.com
|
941
|
+
shortcut: gitea
|
942
|
+
disabled: true
|
943
|
+
|
944
|
+
- name: goodreads
|
945
|
+
engine: goodreads
|
946
|
+
shortcut: good
|
947
|
+
timeout: 4.0
|
948
|
+
disabled: true
|
949
|
+
|
950
|
+
- name: google
|
951
|
+
engine: google
|
952
|
+
shortcut: go
|
953
|
+
# additional_tests:
|
954
|
+
# android: *test_android
|
955
|
+
|
956
|
+
- name: google images
|
957
|
+
engine: google_images
|
958
|
+
shortcut: goi
|
959
|
+
# additional_tests:
|
960
|
+
# android: *test_android
|
961
|
+
# dali:
|
962
|
+
# matrix:
|
963
|
+
# query: ['Dali Christ']
|
964
|
+
# lang: ['en', 'de', 'fr', 'zh-CN']
|
965
|
+
# result_container:
|
966
|
+
# - ['one_title_contains', 'Salvador']
|
967
|
+
|
968
|
+
- name: google news
|
969
|
+
engine: google_news
|
970
|
+
shortcut: gon
|
971
|
+
# additional_tests:
|
972
|
+
# android: *test_android
|
973
|
+
|
974
|
+
- name: google videos
|
975
|
+
engine: google_videos
|
976
|
+
shortcut: gov
|
977
|
+
# additional_tests:
|
978
|
+
# android: *test_android
|
979
|
+
|
980
|
+
- name: google scholar
|
981
|
+
engine: google_scholar
|
982
|
+
shortcut: gos
|
983
|
+
|
984
|
+
- name: google play apps
|
985
|
+
engine: google_play
|
986
|
+
categories: [files, apps]
|
987
|
+
shortcut: gpa
|
988
|
+
play_categ: apps
|
989
|
+
disabled: true
|
990
|
+
|
991
|
+
- name: google play movies
|
992
|
+
engine: google_play
|
993
|
+
categories: videos
|
994
|
+
shortcut: gpm
|
995
|
+
play_categ: movies
|
996
|
+
disabled: true
|
997
|
+
|
998
|
+
- name: material icons
|
999
|
+
engine: material_icons
|
1000
|
+
categories: images
|
1001
|
+
shortcut: mi
|
1002
|
+
disabled: true
|
1003
|
+
|
1004
|
+
- name: habrahabr
|
1005
|
+
engine: xpath
|
1006
|
+
paging: true
|
1007
|
+
search_url: https://habr.com/en/search/page{pageno}/?q={query}
|
1008
|
+
results_xpath: //article[contains(@class, "tm-articles-list__item")]
|
1009
|
+
url_xpath: .//a[@class="tm-title__link"]/@href
|
1010
|
+
title_xpath: .//a[@class="tm-title__link"]
|
1011
|
+
content_xpath: .//div[contains(@class, "article-formatted-body")]
|
1012
|
+
categories: it
|
1013
|
+
timeout: 4.0
|
1014
|
+
disabled: true
|
1015
|
+
shortcut: habr
|
1016
|
+
about:
|
1017
|
+
website: https://habr.com/
|
1018
|
+
wikidata_id: Q4494434
|
1019
|
+
official_api_documentation: https://habr.com/en/docs/help/api/
|
1020
|
+
use_official_api: false
|
1021
|
+
require_api_key: false
|
1022
|
+
results: HTML
|
1023
|
+
|
1024
|
+
- name: hackernews
|
1025
|
+
engine: hackernews
|
1026
|
+
shortcut: hn
|
1027
|
+
disabled: true
|
1028
|
+
|
1029
|
+
- name: hex
|
1030
|
+
engine: hex
|
1031
|
+
shortcut: hex
|
1032
|
+
disabled: true
|
1033
|
+
# Valid values: name inserted_at updated_at total_downloads recent_downloads
|
1034
|
+
sort_criteria: "recent_downloads"
|
1035
|
+
page_size: 10
|
1036
|
+
|
1037
|
+
- name: crates.io
|
1038
|
+
engine: crates
|
1039
|
+
shortcut: crates
|
1040
|
+
disabled: true
|
1041
|
+
timeout: 6.0
|
1042
|
+
|
1043
|
+
- name: hoogle
|
1044
|
+
engine: xpath
|
1045
|
+
search_url: https://hoogle.haskell.org/?hoogle={query}
|
1046
|
+
results_xpath: '//div[@class="result"]'
|
1047
|
+
title_xpath: './/div[@class="ans"]//a'
|
1048
|
+
url_xpath: './/div[@class="ans"]//a/@href'
|
1049
|
+
content_xpath: './/div[@class="from"]'
|
1050
|
+
page_size: 20
|
1051
|
+
categories: [it, packages]
|
1052
|
+
shortcut: ho
|
1053
|
+
about:
|
1054
|
+
website: https://hoogle.haskell.org/
|
1055
|
+
wikidata_id: Q34010
|
1056
|
+
official_api_documentation: https://hackage.haskell.org/api
|
1057
|
+
use_official_api: false
|
1058
|
+
require_api_key: false
|
1059
|
+
results: JSON
|
1060
|
+
|
1061
|
+
- name: imdb
|
1062
|
+
engine: imdb
|
1063
|
+
shortcut: imdb
|
1064
|
+
timeout: 6.0
|
1065
|
+
disabled: true
|
1066
|
+
|
1067
|
+
- name: imgur
|
1068
|
+
engine: imgur
|
1069
|
+
shortcut: img
|
1070
|
+
disabled: true
|
1071
|
+
|
1072
|
+
- name: ina
|
1073
|
+
engine: ina
|
1074
|
+
shortcut: in
|
1075
|
+
timeout: 6.0
|
1076
|
+
disabled: true
|
1077
|
+
|
1078
|
+
- name: invidious
|
1079
|
+
engine: invidious
|
1080
|
+
# Instanes will be selected randomly, see https://api.invidious.io/ for
|
1081
|
+
# instances that are stable (good uptime) and close to you.
|
1082
|
+
base_url:
|
1083
|
+
- https://invidious.adminforge.de
|
1084
|
+
- https://inv.nadeko.net
|
1085
|
+
shortcut: iv
|
1086
|
+
timeout: 3.0
|
1087
|
+
disabled: true
|
1088
|
+
|
1089
|
+
- name: ipernity
|
1090
|
+
engine: ipernity
|
1091
|
+
shortcut: ip
|
1092
|
+
disabled: true
|
1093
|
+
|
1094
|
+
- name: jisho
|
1095
|
+
engine: jisho
|
1096
|
+
shortcut: js
|
1097
|
+
timeout: 3.0
|
1098
|
+
disabled: true
|
1099
|
+
|
1100
|
+
- name: kickass
|
1101
|
+
engine: kickass
|
1102
|
+
base_url:
|
1103
|
+
- https://kickasstorrents.to
|
1104
|
+
- https://kickasstorrents.cr
|
1105
|
+
- https://kickasstorrent.cr
|
1106
|
+
- https://kickass.sx
|
1107
|
+
- https://kat.am
|
1108
|
+
shortcut: kc
|
1109
|
+
timeout: 4.0
|
1110
|
+
|
1111
|
+
- name: lemmy communities
|
1112
|
+
engine: lemmy
|
1113
|
+
lemmy_type: Communities
|
1114
|
+
shortcut: leco
|
1115
|
+
|
1116
|
+
- name: lemmy users
|
1117
|
+
engine: lemmy
|
1118
|
+
network: lemmy communities
|
1119
|
+
lemmy_type: Users
|
1120
|
+
shortcut: leus
|
1121
|
+
|
1122
|
+
- name: lemmy posts
|
1123
|
+
engine: lemmy
|
1124
|
+
network: lemmy communities
|
1125
|
+
lemmy_type: Posts
|
1126
|
+
shortcut: lepo
|
1127
|
+
|
1128
|
+
- name: lemmy comments
|
1129
|
+
engine: lemmy
|
1130
|
+
network: lemmy communities
|
1131
|
+
lemmy_type: Comments
|
1132
|
+
shortcut: lecom
|
1133
|
+
|
1134
|
+
- name: library genesis
|
1135
|
+
engine: xpath
|
1136
|
+
# search_url: https://libgen.is/search.php?req={query}
|
1137
|
+
search_url: https://libgen.rs/search.php?req={query}
|
1138
|
+
url_xpath: //a[contains(@href,"book/index.php?md5")]/@href
|
1139
|
+
title_xpath: //a[contains(@href,"book/")]/text()[1]
|
1140
|
+
content_xpath: //td/a[1][contains(@href,"=author")]/text()
|
1141
|
+
categories: files
|
1142
|
+
timeout: 7.0
|
1143
|
+
disabled: true
|
1144
|
+
shortcut: lg
|
1145
|
+
about:
|
1146
|
+
website: https://libgen.fun/
|
1147
|
+
wikidata_id: Q22017206
|
1148
|
+
official_api_documentation:
|
1149
|
+
use_official_api: false
|
1150
|
+
require_api_key: false
|
1151
|
+
results: HTML
|
1152
|
+
|
1153
|
+
- name: z-library
|
1154
|
+
engine: zlibrary
|
1155
|
+
shortcut: zlib
|
1156
|
+
categories: files
|
1157
|
+
timeout: 7.0
|
1158
|
+
|
1159
|
+
- name: library of congress
|
1160
|
+
engine: loc
|
1161
|
+
shortcut: loc
|
1162
|
+
categories: images
|
1163
|
+
|
1164
|
+
- name: libretranslate
|
1165
|
+
engine: libretranslate
|
1166
|
+
# https://github.com/LibreTranslate/LibreTranslate?tab=readme-ov-file#mirrors
|
1167
|
+
base_url:
|
1168
|
+
- https://libretranslate.com/translate
|
1169
|
+
# api_key: abc123
|
1170
|
+
shortcut: lt
|
1171
|
+
disabled: true
|
1172
|
+
|
1173
|
+
- name: lingva
|
1174
|
+
engine: lingva
|
1175
|
+
shortcut: lv
|
1176
|
+
# set lingva instance in url, by default it will use the official instance
|
1177
|
+
# url: https://lingva.thedaviddelta.com
|
1178
|
+
|
1179
|
+
- name: lobste.rs
|
1180
|
+
engine: xpath
|
1181
|
+
search_url: https://lobste.rs/search?q={query}&what=stories&order=relevance
|
1182
|
+
results_xpath: //li[contains(@class, "story")]
|
1183
|
+
url_xpath: .//a[@class="u-url"]/@href
|
1184
|
+
title_xpath: .//a[@class="u-url"]
|
1185
|
+
content_xpath: .//a[@class="domain"]
|
1186
|
+
categories: it
|
1187
|
+
shortcut: lo
|
1188
|
+
timeout: 5.0
|
1189
|
+
disabled: true
|
1190
|
+
about:
|
1191
|
+
website: https://lobste.rs/
|
1192
|
+
wikidata_id: Q60762874
|
1193
|
+
official_api_documentation:
|
1194
|
+
use_official_api: false
|
1195
|
+
require_api_key: false
|
1196
|
+
results: HTML
|
1197
|
+
|
1198
|
+
- name: mastodon users
|
1199
|
+
engine: mastodon
|
1200
|
+
mastodon_type: accounts
|
1201
|
+
base_url: https://mastodon.social
|
1202
|
+
shortcut: mau
|
1203
|
+
|
1204
|
+
- name: mastodon hashtags
|
1205
|
+
engine: mastodon
|
1206
|
+
mastodon_type: hashtags
|
1207
|
+
base_url: https://mastodon.social
|
1208
|
+
shortcut: mah
|
1209
|
+
|
1210
|
+
# - name: matrixrooms
|
1211
|
+
# engine: mrs
|
1212
|
+
# # https://docs.searxng.org/dev/engines/online/mrs.html
|
1213
|
+
# # base_url: https://mrs-api-host
|
1214
|
+
# shortcut: mtrx
|
1215
|
+
# disabled: true
|
1216
|
+
|
1217
|
+
- name: mdn
|
1218
|
+
shortcut: mdn
|
1219
|
+
engine: json_engine
|
1220
|
+
categories: [it]
|
1221
|
+
paging: true
|
1222
|
+
search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
|
1223
|
+
results_query: documents
|
1224
|
+
url_query: mdn_url
|
1225
|
+
url_prefix: https://developer.mozilla.org
|
1226
|
+
title_query: title
|
1227
|
+
content_query: summary
|
1228
|
+
about:
|
1229
|
+
website: https://developer.mozilla.org
|
1230
|
+
wikidata_id: Q3273508
|
1231
|
+
official_api_documentation: null
|
1232
|
+
use_official_api: false
|
1233
|
+
require_api_key: false
|
1234
|
+
results: JSON
|
1235
|
+
|
1236
|
+
- name: metacpan
|
1237
|
+
engine: metacpan
|
1238
|
+
shortcut: cpan
|
1239
|
+
disabled: true
|
1240
|
+
number_of_results: 20
|
1241
|
+
|
1242
|
+
# - name: meilisearch
|
1243
|
+
# engine: meilisearch
|
1244
|
+
# shortcut: mes
|
1245
|
+
# enable_http: true
|
1246
|
+
# base_url: http://localhost:7700
|
1247
|
+
# index: my-index
|
1248
|
+
|
1249
|
+
- name: mixcloud
|
1250
|
+
engine: mixcloud
|
1251
|
+
shortcut: mc
|
1252
|
+
|
1253
|
+
# MongoDB engine
|
1254
|
+
# Required dependency: pymongo
|
1255
|
+
# - name: mymongo
|
1256
|
+
# engine: mongodb
|
1257
|
+
# shortcut: md
|
1258
|
+
# exact_match_only: false
|
1259
|
+
# host: '127.0.0.1'
|
1260
|
+
# port: 27017
|
1261
|
+
# enable_http: true
|
1262
|
+
# results_per_page: 20
|
1263
|
+
# database: 'business'
|
1264
|
+
# collection: 'reviews' # name of the db collection
|
1265
|
+
# key: 'name' # key in the collection to search for
|
1266
|
+
|
1267
|
+
- name: mozhi
|
1268
|
+
engine: mozhi
|
1269
|
+
base_url:
|
1270
|
+
- https://mozhi.aryak.me
|
1271
|
+
- https://translate.bus-hit.me
|
1272
|
+
- https://nyc1.mz.ggtyler.dev
|
1273
|
+
# mozhi_engine: google - see https://mozhi.aryak.me for supported engines
|
1274
|
+
timeout: 4.0
|
1275
|
+
shortcut: mz
|
1276
|
+
disabled: true
|
1277
|
+
|
1278
|
+
- name: mwmbl
|
1279
|
+
engine: mwmbl
|
1280
|
+
# api_url: https://api.mwmbl.org
|
1281
|
+
shortcut: mwm
|
1282
|
+
disabled: true
|
1283
|
+
|
1284
|
+
- name: npm
|
1285
|
+
engine: npm
|
1286
|
+
shortcut: npm
|
1287
|
+
timeout: 5.0
|
1288
|
+
disabled: true
|
1289
|
+
|
1290
|
+
- name: nyaa
|
1291
|
+
engine: nyaa
|
1292
|
+
shortcut: nt
|
1293
|
+
disabled: true
|
1294
|
+
|
1295
|
+
- name: mankier
|
1296
|
+
engine: json_engine
|
1297
|
+
search_url: https://www.mankier.com/api/v2/mans/?q={query}
|
1298
|
+
results_query: results
|
1299
|
+
url_query: url
|
1300
|
+
title_query: name
|
1301
|
+
content_query: description
|
1302
|
+
categories: it
|
1303
|
+
shortcut: man
|
1304
|
+
about:
|
1305
|
+
website: https://www.mankier.com/
|
1306
|
+
official_api_documentation: https://www.mankier.com/api
|
1307
|
+
use_official_api: true
|
1308
|
+
require_api_key: false
|
1309
|
+
results: JSON
|
1310
|
+
|
1311
|
+
# read https://docs.searxng.org/dev/engines/online/mullvad_leta.html
|
1312
|
+
# - name: mullvadleta
|
1313
|
+
# engine: mullvad_leta
|
1314
|
+
# leta_engine: google # choose one of the following: google, brave
|
1315
|
+
# use_cache: true # Only 100 non-cache searches per day, suggested only for private instances
|
1316
|
+
# search_url: https://leta.mullvad.net
|
1317
|
+
# categories: [general, web]
|
1318
|
+
# shortcut: ml
|
1319
|
+
|
1320
|
+
- name: odysee
|
1321
|
+
engine: odysee
|
1322
|
+
shortcut: od
|
1323
|
+
disabled: true
|
1324
|
+
|
1325
|
+
- name: openairedatasets
|
1326
|
+
engine: json_engine
|
1327
|
+
paging: true
|
1328
|
+
search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
|
1329
|
+
results_query: response/results/result
|
1330
|
+
url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
|
1331
|
+
title_query: metadata/oaf:entity/oaf:result/title/$
|
1332
|
+
content_query: metadata/oaf:entity/oaf:result/description/$
|
1333
|
+
content_html_to_text: true
|
1334
|
+
categories: "science"
|
1335
|
+
shortcut: oad
|
1336
|
+
timeout: 5.0
|
1337
|
+
about:
|
1338
|
+
website: https://www.openaire.eu/
|
1339
|
+
wikidata_id: Q25106053
|
1340
|
+
official_api_documentation: https://api.openaire.eu/
|
1341
|
+
use_official_api: false
|
1342
|
+
require_api_key: false
|
1343
|
+
results: JSON
|
1344
|
+
|
1345
|
+
- name: openairepublications
|
1346
|
+
engine: json_engine
|
1347
|
+
paging: true
|
1348
|
+
search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
|
1349
|
+
results_query: response/results/result
|
1350
|
+
url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
|
1351
|
+
title_query: metadata/oaf:entity/oaf:result/title/$
|
1352
|
+
content_query: metadata/oaf:entity/oaf:result/description/$
|
1353
|
+
content_html_to_text: true
|
1354
|
+
categories: science
|
1355
|
+
shortcut: oap
|
1356
|
+
timeout: 5.0
|
1357
|
+
about:
|
1358
|
+
website: https://www.openaire.eu/
|
1359
|
+
wikidata_id: Q25106053
|
1360
|
+
official_api_documentation: https://api.openaire.eu/
|
1361
|
+
use_official_api: false
|
1362
|
+
require_api_key: false
|
1363
|
+
results: JSON
|
1364
|
+
|
1365
|
+
- name: openlibrary
|
1366
|
+
engine: openlibrary
|
1367
|
+
shortcut: ol
|
1368
|
+
timeout: 5
|
1369
|
+
disabled: true
|
1370
|
+
|
1371
|
+
- name: openmeteo
|
1372
|
+
engine: open_meteo
|
1373
|
+
shortcut: om
|
1374
|
+
disabled: true
|
1375
|
+
|
1376
|
+
# - name: opensemanticsearch
|
1377
|
+
# engine: opensemantic
|
1378
|
+
# shortcut: oss
|
1379
|
+
# base_url: 'http://localhost:8983/solr/opensemanticsearch/'
|
1380
|
+
|
1381
|
+
- name: openstreetmap
|
1382
|
+
engine: openstreetmap
|
1383
|
+
shortcut: osm
|
1384
|
+
|
1385
|
+
- name: openrepos
|
1386
|
+
engine: xpath
|
1387
|
+
paging: true
|
1388
|
+
search_url: https://openrepos.net/search/node/{query}?page={pageno}
|
1389
|
+
url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
|
1390
|
+
title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
|
1391
|
+
content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
|
1392
|
+
categories: files
|
1393
|
+
timeout: 4.0
|
1394
|
+
disabled: true
|
1395
|
+
shortcut: or
|
1396
|
+
about:
|
1397
|
+
website: https://openrepos.net/
|
1398
|
+
wikidata_id:
|
1399
|
+
official_api_documentation:
|
1400
|
+
use_official_api: false
|
1401
|
+
require_api_key: false
|
1402
|
+
results: HTML
|
1403
|
+
|
1404
|
+
- name: packagist
|
1405
|
+
engine: json_engine
|
1406
|
+
paging: true
|
1407
|
+
search_url: https://packagist.org/search.json?q={query}&page={pageno}
|
1408
|
+
results_query: results
|
1409
|
+
url_query: url
|
1410
|
+
title_query: name
|
1411
|
+
content_query: description
|
1412
|
+
categories: [it, packages]
|
1413
|
+
disabled: true
|
1414
|
+
timeout: 5.0
|
1415
|
+
shortcut: pack
|
1416
|
+
about:
|
1417
|
+
website: https://packagist.org
|
1418
|
+
wikidata_id: Q108311377
|
1419
|
+
official_api_documentation: https://packagist.org/apidoc
|
1420
|
+
use_official_api: true
|
1421
|
+
require_api_key: false
|
1422
|
+
results: JSON
|
1423
|
+
|
1424
|
+
- name: pdbe
|
1425
|
+
engine: pdbe
|
1426
|
+
shortcut: pdb
|
1427
|
+
# Hide obsolete PDB entries. Default is not to hide obsolete structures
|
1428
|
+
# hide_obsolete: false
|
1429
|
+
|
1430
|
+
- name: photon
|
1431
|
+
engine: photon
|
1432
|
+
shortcut: ph
|
1433
|
+
|
1434
|
+
- name: pinterest
|
1435
|
+
engine: pinterest
|
1436
|
+
shortcut: pin
|
1437
|
+
|
1438
|
+
- name: piped
|
1439
|
+
engine: piped
|
1440
|
+
shortcut: ppd
|
1441
|
+
categories: videos
|
1442
|
+
piped_filter: videos
|
1443
|
+
timeout: 3.0
|
1444
|
+
|
1445
|
+
# URL to use as link and for embeds
|
1446
|
+
frontend_url: https://srv.piped.video
|
1447
|
+
# Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
|
1448
|
+
backend_url:
|
1449
|
+
- https://pipedapi.adminforge.de
|
1450
|
+
- https://pipedapi.nosebs.ru
|
1451
|
+
- https://pipedapi.ducks.party
|
1452
|
+
- https://pipedapi.reallyaweso.me
|
1453
|
+
- https://api.piped.private.coffee
|
1454
|
+
- https://pipedapi.darkness.services
|
1455
|
+
|
1456
|
+
- name: piped.music
|
1457
|
+
engine: piped
|
1458
|
+
network: piped
|
1459
|
+
shortcut: ppdm
|
1460
|
+
categories: music
|
1461
|
+
piped_filter: music_songs
|
1462
|
+
timeout: 3.0
|
1463
|
+
|
1464
|
+
- name: piratebay
|
1465
|
+
engine: piratebay
|
1466
|
+
shortcut: tpb
|
1467
|
+
# You may need to change this URL to a proxy if piratebay is blocked in your
|
1468
|
+
# country
|
1469
|
+
url: https://thepiratebay.org/
|
1470
|
+
timeout: 3.0
|
1471
|
+
|
1472
|
+
- name: pixiv
|
1473
|
+
shortcut: pv
|
1474
|
+
engine: pixiv
|
1475
|
+
disabled: true
|
1476
|
+
inactive: true
|
1477
|
+
pixiv_image_proxies:
|
1478
|
+
- https://pximg.example.org
|
1479
|
+
# A proxy is required to load the images. Hosting an image proxy server
|
1480
|
+
# for Pixiv:
|
1481
|
+
# --> https://pixivfe.pages.dev/hosting-image-proxy-server/
|
1482
|
+
# Proxies from public instances. Ask the public instances owners if they
|
1483
|
+
# agree to receive traffic from SearXNG!
|
1484
|
+
# --> https://codeberg.org/VnPower/PixivFE#instances
|
1485
|
+
# --> https://github.com/searxng/searxng/pull/3192#issuecomment-1941095047
|
1486
|
+
# image proxy of https://pixiv.cat
|
1487
|
+
# - https://i.pixiv.cat
|
1488
|
+
# image proxy of https://www.pixiv.pics
|
1489
|
+
# - https://pximg.cocomi.eu.org
|
1490
|
+
# image proxy of https://pixivfe.exozy.me
|
1491
|
+
# - https://pximg.exozy.me
|
1492
|
+
# image proxy of https://pixivfe.ducks.party
|
1493
|
+
# - https://pixiv.ducks.party
|
1494
|
+
# image proxy of https://pixiv.perennialte.ch
|
1495
|
+
# - https://pximg.perennialte.ch
|
1496
|
+
|
1497
|
+
- name: podcastindex
|
1498
|
+
engine: podcastindex
|
1499
|
+
shortcut: podcast
|
1500
|
+
|
1501
|
+
# Required dependency: psychopg2
|
1502
|
+
# - name: postgresql
|
1503
|
+
# engine: postgresql
|
1504
|
+
# database: postgres
|
1505
|
+
# username: postgres
|
1506
|
+
# password: postgres
|
1507
|
+
# limit: 10
|
1508
|
+
# query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
|
1509
|
+
# shortcut : psql
|
1510
|
+
|
1511
|
+
- name: presearch
|
1512
|
+
engine: presearch
|
1513
|
+
search_type: search
|
1514
|
+
categories: [general, web]
|
1515
|
+
shortcut: ps
|
1516
|
+
timeout: 4.0
|
1517
|
+
disabled: true
|
1518
|
+
|
1519
|
+
- name: presearch images
|
1520
|
+
engine: presearch
|
1521
|
+
network: presearch
|
1522
|
+
search_type: images
|
1523
|
+
categories: [images, web]
|
1524
|
+
timeout: 4.0
|
1525
|
+
shortcut: psimg
|
1526
|
+
disabled: true
|
1527
|
+
|
1528
|
+
- name: presearch videos
|
1529
|
+
engine: presearch
|
1530
|
+
network: presearch
|
1531
|
+
search_type: videos
|
1532
|
+
categories: [general, web]
|
1533
|
+
timeout: 4.0
|
1534
|
+
shortcut: psvid
|
1535
|
+
disabled: true
|
1536
|
+
|
1537
|
+
- name: presearch news
|
1538
|
+
engine: presearch
|
1539
|
+
network: presearch
|
1540
|
+
search_type: news
|
1541
|
+
categories: [news, web]
|
1542
|
+
timeout: 4.0
|
1543
|
+
shortcut: psnews
|
1544
|
+
disabled: true
|
1545
|
+
|
1546
|
+
- name: pub.dev
|
1547
|
+
engine: xpath
|
1548
|
+
shortcut: pd
|
1549
|
+
search_url: https://pub.dev/packages?q={query}&page={pageno}
|
1550
|
+
paging: true
|
1551
|
+
results_xpath: //div[contains(@class,"packages-item")]
|
1552
|
+
url_xpath: ./div/h3/a/@href
|
1553
|
+
title_xpath: ./div/h3/a
|
1554
|
+
content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
|
1555
|
+
categories: [packages, it]
|
1556
|
+
timeout: 3.0
|
1557
|
+
disabled: true
|
1558
|
+
first_page_num: 1
|
1559
|
+
about:
|
1560
|
+
website: https://pub.dev/
|
1561
|
+
official_api_documentation: https://pub.dev/help/api
|
1562
|
+
use_official_api: false
|
1563
|
+
require_api_key: false
|
1564
|
+
results: HTML
|
1565
|
+
|
1566
|
+
- name: public domain image archive
|
1567
|
+
engine: public_domain_image_archive
|
1568
|
+
shortcut: pdia
|
1569
|
+
|
1570
|
+
- name: pubmed
|
1571
|
+
engine: pubmed
|
1572
|
+
shortcut: pub
|
1573
|
+
timeout: 3.0
|
1574
|
+
|
1575
|
+
- name: pypi
|
1576
|
+
shortcut: pypi
|
1577
|
+
engine: pypi
|
1578
|
+
|
1579
|
+
- name: qwant
|
1580
|
+
qwant_categ: web
|
1581
|
+
engine: qwant
|
1582
|
+
shortcut: qw
|
1583
|
+
categories: [general, web]
|
1584
|
+
additional_tests:
|
1585
|
+
rosebud: *test_rosebud
|
1586
|
+
|
1587
|
+
- name: qwant news
|
1588
|
+
qwant_categ: news
|
1589
|
+
engine: qwant
|
1590
|
+
shortcut: qwn
|
1591
|
+
categories: news
|
1592
|
+
network: qwant
|
1593
|
+
|
1594
|
+
- name: qwant images
|
1595
|
+
qwant_categ: images
|
1596
|
+
engine: qwant
|
1597
|
+
shortcut: qwi
|
1598
|
+
categories: [images, web]
|
1599
|
+
network: qwant
|
1600
|
+
|
1601
|
+
- name: qwant videos
|
1602
|
+
qwant_categ: videos
|
1603
|
+
engine: qwant
|
1604
|
+
shortcut: qwv
|
1605
|
+
categories: [videos, web]
|
1606
|
+
network: qwant
|
1607
|
+
|
1608
|
+
# - name: library
|
1609
|
+
# engine: recoll
|
1610
|
+
# shortcut: lib
|
1611
|
+
# base_url: 'https://recoll.example.org/'
|
1612
|
+
# search_dir: ''
|
1613
|
+
# mount_prefix: /export
|
1614
|
+
# dl_prefix: 'https://download.example.org'
|
1615
|
+
# timeout: 30.0
|
1616
|
+
# categories: files
|
1617
|
+
# disabled: true
|
1618
|
+
|
1619
|
+
# - name: recoll library reference
|
1620
|
+
# engine: recoll
|
1621
|
+
# base_url: 'https://recoll.example.org/'
|
1622
|
+
# search_dir: reference
|
1623
|
+
# mount_prefix: /export
|
1624
|
+
# dl_prefix: 'https://download.example.org'
|
1625
|
+
# shortcut: libr
|
1626
|
+
# timeout: 30.0
|
1627
|
+
# categories: files
|
1628
|
+
# disabled: true
|
1629
|
+
|
1630
|
+
- name: radio browser
|
1631
|
+
engine: radio_browser
|
1632
|
+
shortcut: rb
|
1633
|
+
|
1634
|
+
- name: reddit
|
1635
|
+
engine: reddit
|
1636
|
+
shortcut: re
|
1637
|
+
page_size: 25
|
1638
|
+
disabled: true
|
1639
|
+
|
1640
|
+
- name: right dao
|
1641
|
+
engine: xpath
|
1642
|
+
paging: true
|
1643
|
+
page_size: 12
|
1644
|
+
search_url: https://rightdao.com/search?q={query}&start={pageno}
|
1645
|
+
results_xpath: //div[contains(@class, "description")]
|
1646
|
+
url_xpath: ../div[contains(@class, "title")]/a/@href
|
1647
|
+
title_xpath: ../div[contains(@class, "title")]
|
1648
|
+
content_xpath: .
|
1649
|
+
categories: general
|
1650
|
+
shortcut: rd
|
1651
|
+
disabled: true
|
1652
|
+
about:
|
1653
|
+
website: https://rightdao.com/
|
1654
|
+
use_official_api: false
|
1655
|
+
require_api_key: false
|
1656
|
+
results: HTML
|
1657
|
+
|
1658
|
+
- name: rottentomatoes
|
1659
|
+
engine: rottentomatoes
|
1660
|
+
shortcut: rt
|
1661
|
+
disabled: true
|
1662
|
+
|
1663
|
+
# Required dependency: redis
|
1664
|
+
# - name: myredis
|
1665
|
+
# shortcut : rds
|
1666
|
+
# engine: redis_server
|
1667
|
+
# exact_match_only: false
|
1668
|
+
# host: '127.0.0.1'
|
1669
|
+
# port: 6379
|
1670
|
+
# enable_http: true
|
1671
|
+
# password: ''
|
1672
|
+
# db: 0
|
1673
|
+
|
1674
|
+
# tmp suspended: bad certificate
|
1675
|
+
# - name: scanr structures
|
1676
|
+
# shortcut: scs
|
1677
|
+
# engine: scanr_structures
|
1678
|
+
# disabled: true
|
1679
|
+
|
1680
|
+
- name: searchmysite
|
1681
|
+
engine: xpath
|
1682
|
+
shortcut: sms
|
1683
|
+
categories: general
|
1684
|
+
paging: true
|
1685
|
+
search_url: https://searchmysite.net/search/?q={query}&page={pageno}
|
1686
|
+
results_xpath: //div[contains(@class,'search-result')]
|
1687
|
+
url_xpath: .//a[contains(@class,'result-link')]/@href
|
1688
|
+
title_xpath: .//span[contains(@class,'result-title-txt')]/text()
|
1689
|
+
content_xpath: ./p[@id='result-hightlight']
|
1690
|
+
disabled: true
|
1691
|
+
about:
|
1692
|
+
website: https://searchmysite.net
|
1693
|
+
|
1694
|
+
- name: sepiasearch
|
1695
|
+
engine: sepiasearch
|
1696
|
+
shortcut: sep
|
1697
|
+
|
1698
|
+
- name: soundcloud
|
1699
|
+
engine: soundcloud
|
1700
|
+
shortcut: sc
|
1701
|
+
|
1702
|
+
- name: stackoverflow
|
1703
|
+
engine: stackexchange
|
1704
|
+
shortcut: st
|
1705
|
+
api_site: 'stackoverflow'
|
1706
|
+
categories: [it, q&a]
|
1707
|
+
|
1708
|
+
- name: askubuntu
|
1709
|
+
engine: stackexchange
|
1710
|
+
shortcut: ubuntu
|
1711
|
+
api_site: 'askubuntu'
|
1712
|
+
categories: [it, q&a]
|
1713
|
+
|
1714
|
+
- name: superuser
|
1715
|
+
engine: stackexchange
|
1716
|
+
shortcut: su
|
1717
|
+
api_site: 'superuser'
|
1718
|
+
categories: [it, q&a]
|
1719
|
+
|
1720
|
+
- name: discuss.python
|
1721
|
+
engine: discourse
|
1722
|
+
shortcut: dpy
|
1723
|
+
base_url: 'https://discuss.python.org'
|
1724
|
+
categories: [it, q&a]
|
1725
|
+
disabled: true
|
1726
|
+
|
1727
|
+
- name: caddy.community
|
1728
|
+
engine: discourse
|
1729
|
+
shortcut: caddy
|
1730
|
+
base_url: 'https://caddy.community'
|
1731
|
+
categories: [it, q&a]
|
1732
|
+
disabled: true
|
1733
|
+
|
1734
|
+
- name: pi-hole.community
|
1735
|
+
engine: discourse
|
1736
|
+
shortcut: pi
|
1737
|
+
categories: [it, q&a]
|
1738
|
+
base_url: 'https://discourse.pi-hole.net'
|
1739
|
+
disabled: true
|
1740
|
+
|
1741
|
+
- name: searchcode code
|
1742
|
+
engine: searchcode_code
|
1743
|
+
shortcut: scc
|
1744
|
+
disabled: true
|
1745
|
+
|
1746
|
+
# - name: searx
|
1747
|
+
# engine: searx_engine
|
1748
|
+
# shortcut: se
|
1749
|
+
# instance_urls :
|
1750
|
+
# - http://127.0.0.1:8888/
|
1751
|
+
# - ...
|
1752
|
+
# disabled: true
|
1753
|
+
|
1754
|
+
- name: semantic scholar
|
1755
|
+
engine: semantic_scholar
|
1756
|
+
disabled: true
|
1757
|
+
shortcut: se
|
1758
|
+
|
1759
|
+
# Spotify needs API credentials
|
1760
|
+
# - name: spotify
|
1761
|
+
# engine: spotify
|
1762
|
+
# shortcut: stf
|
1763
|
+
# api_client_id: *******
|
1764
|
+
# api_client_secret: *******
|
1765
|
+
|
1766
|
+
# - name: solr
|
1767
|
+
# engine: solr
|
1768
|
+
# shortcut: slr
|
1769
|
+
# base_url: http://localhost:8983
|
1770
|
+
# collection: collection_name
|
1771
|
+
# sort: '' # sorting: asc or desc
|
1772
|
+
# field_list: '' # comma separated list of field names to display on the UI
|
1773
|
+
# default_fields: '' # default field to query
|
1774
|
+
# query_fields: '' # query fields
|
1775
|
+
# enable_http: true
|
1776
|
+
|
1777
|
+
# - name: springer nature
|
1778
|
+
# engine: springer
|
1779
|
+
# # get your API key from: https://dev.springernature.com/signup
|
1780
|
+
# # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
|
1781
|
+
# api_key: 'unset'
|
1782
|
+
# shortcut: springer
|
1783
|
+
# timeout: 15.0
|
1784
|
+
|
1785
|
+
- name: startpage
|
1786
|
+
engine: startpage
|
1787
|
+
shortcut: sp
|
1788
|
+
startpage_categ: web
|
1789
|
+
categories: [general, web]
|
1790
|
+
additional_tests:
|
1791
|
+
rosebud: *test_rosebud
|
1792
|
+
|
1793
|
+
- name: startpage news
|
1794
|
+
engine: startpage
|
1795
|
+
startpage_categ: news
|
1796
|
+
categories: [news, web]
|
1797
|
+
shortcut: spn
|
1798
|
+
|
1799
|
+
- name: startpage images
|
1800
|
+
engine: startpage
|
1801
|
+
startpage_categ: images
|
1802
|
+
categories: [images, web]
|
1803
|
+
shortcut: spi
|
1804
|
+
|
1805
|
+
- name: tokyotoshokan
|
1806
|
+
engine: tokyotoshokan
|
1807
|
+
shortcut: tt
|
1808
|
+
timeout: 6.0
|
1809
|
+
disabled: true
|
1810
|
+
|
1811
|
+
- name: solidtorrents
|
1812
|
+
engine: solidtorrents
|
1813
|
+
shortcut: solid
|
1814
|
+
timeout: 4.0
|
1815
|
+
base_url:
|
1816
|
+
- https://solidtorrents.to
|
1817
|
+
- https://bitsearch.to
|
1818
|
+
|
1819
|
+
# For this demo of the sqlite engine download:
|
1820
|
+
# https://liste.mediathekview.de/filmliste-v2.db.bz2
|
1821
|
+
# and unpack into searx/data/filmliste-v2.db
|
1822
|
+
# Query to test: "!demo concert"
|
1823
|
+
#
|
1824
|
+
# - name: demo
|
1825
|
+
# engine: sqlite
|
1826
|
+
# shortcut: demo
|
1827
|
+
# categories: general
|
1828
|
+
# result_template: default.html
|
1829
|
+
# database: searx/data/filmliste-v2.db
|
1830
|
+
# query_str: >-
|
1831
|
+
# SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
|
1832
|
+
# COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
|
1833
|
+
# description AS content
|
1834
|
+
# FROM film
|
1835
|
+
# WHERE title LIKE :wildcard OR description LIKE :wildcard
|
1836
|
+
# ORDER BY duration DESC
|
1837
|
+
|
1838
|
+
- name: tagesschau
|
1839
|
+
engine: tagesschau
|
1840
|
+
# when set to false, display URLs from Tagesschau, and not the actual source
|
1841
|
+
# (e.g. NDR, WDR, SWR, HR, ...)
|
1842
|
+
use_source_url: true
|
1843
|
+
shortcut: ts
|
1844
|
+
disabled: true
|
1845
|
+
|
1846
|
+
- name: tmdb
|
1847
|
+
engine: xpath
|
1848
|
+
paging: true
|
1849
|
+
categories: movies
|
1850
|
+
search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
|
1851
|
+
results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
|
1852
|
+
url_xpath: .//div[contains(@class,"poster")]/a/@href
|
1853
|
+
thumbnail_xpath: .//img/@src
|
1854
|
+
title_xpath: .//div[contains(@class,"title")]//h2
|
1855
|
+
content_xpath: .//div[contains(@class,"overview")]
|
1856
|
+
shortcut: tm
|
1857
|
+
disabled: true
|
1858
|
+
|
1859
|
+
# Requires Tor
|
1860
|
+
- name: torch
|
1861
|
+
engine: xpath
|
1862
|
+
paging: true
|
1863
|
+
search_url:
|
1864
|
+
http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
|
1865
|
+
results_xpath: //table//tr
|
1866
|
+
url_xpath: ./td[2]/a
|
1867
|
+
title_xpath: ./td[2]/b
|
1868
|
+
content_xpath: ./td[2]/small
|
1869
|
+
categories: onions
|
1870
|
+
enable_http: true
|
1871
|
+
shortcut: tch
|
1872
|
+
|
1873
|
+
# torznab engine lets you query any torznab compatible indexer. Using this
|
1874
|
+
# engine in combination with Jackett opens the possibility to query a lot of
|
1875
|
+
# public and private indexers directly from SearXNG. More details at:
|
1876
|
+
# https://docs.searxng.org/dev/engines/online/torznab.html
|
1877
|
+
#
|
1878
|
+
# - name: Torznab EZTV
|
1879
|
+
# engine: torznab
|
1880
|
+
# shortcut: eztv
|
1881
|
+
# base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
|
1882
|
+
# enable_http: true # if using localhost
|
1883
|
+
# api_key: xxxxxxxxxxxxxxx
|
1884
|
+
# show_magnet_links: true
|
1885
|
+
# show_torrent_files: false
|
1886
|
+
# # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
|
1887
|
+
# torznab_categories: # optional
|
1888
|
+
# - 2000
|
1889
|
+
# - 5000
|
1890
|
+
|
1891
|
+
# tmp suspended - too slow, too many errors
|
1892
|
+
# - name: urbandictionary
|
1893
|
+
# engine : xpath
|
1894
|
+
# search_url : https://www.urbandictionary.com/define.php?term={query}
|
1895
|
+
# url_xpath : //*[@class="word"]/@href
|
1896
|
+
# title_xpath : //*[@class="def-header"]
|
1897
|
+
# content_xpath: //*[@class="meaning"]
|
1898
|
+
# shortcut: ud
|
1899
|
+
|
1900
|
+
- name: unsplash
|
1901
|
+
engine: unsplash
|
1902
|
+
shortcut: us
|
1903
|
+
|
1904
|
+
- name: yandex
|
1905
|
+
engine: yandex
|
1906
|
+
categories: general
|
1907
|
+
search_type: web
|
1908
|
+
shortcut: yd
|
1909
|
+
disabled: true
|
1910
|
+
inactive: true
|
1911
|
+
|
1912
|
+
- name: yandex images
|
1913
|
+
engine: yandex
|
1914
|
+
categories: images
|
1915
|
+
search_type: images
|
1916
|
+
shortcut: ydi
|
1917
|
+
disabled: true
|
1918
|
+
inactive: true
|
1919
|
+
|
1920
|
+
- name: yandex music
|
1921
|
+
engine: yandex_music
|
1922
|
+
shortcut: ydm
|
1923
|
+
disabled: true
|
1924
|
+
# https://yandex.com/support/music/access.html
|
1925
|
+
inactive: true
|
1926
|
+
|
1927
|
+
- name: yahoo
|
1928
|
+
engine: yahoo
|
1929
|
+
shortcut: yh
|
1930
|
+
disabled: true
|
1931
|
+
|
1932
|
+
- name: yahoo news
|
1933
|
+
engine: yahoo_news
|
1934
|
+
shortcut: yhn
|
1935
|
+
|
1936
|
+
- name: youtube
|
1937
|
+
shortcut: yt
|
1938
|
+
# You can use the engine using the official stable API, but you need an API
|
1939
|
+
# key See: https://console.developers.google.com/project
|
1940
|
+
#
|
1941
|
+
# engine: youtube_api
|
1942
|
+
# api_key: 'apikey' # required!
|
1943
|
+
#
|
1944
|
+
# Or you can use the html non-stable engine, activated by default
|
1945
|
+
engine: youtube_noapi
|
1946
|
+
|
1947
|
+
- name: dailymotion
|
1948
|
+
engine: dailymotion
|
1949
|
+
shortcut: dm
|
1950
|
+
|
1951
|
+
- name: vimeo
|
1952
|
+
engine: vimeo
|
1953
|
+
shortcut: vm
|
1954
|
+
|
1955
|
+
- name: wiby
|
1956
|
+
engine: json_engine
|
1957
|
+
paging: true
|
1958
|
+
search_url: https://wiby.me/json/?q={query}&p={pageno}
|
1959
|
+
url_query: URL
|
1960
|
+
title_query: Title
|
1961
|
+
content_query: Snippet
|
1962
|
+
categories: [general, web]
|
1963
|
+
shortcut: wib
|
1964
|
+
disabled: true
|
1965
|
+
about:
|
1966
|
+
website: https://wiby.me/
|
1967
|
+
|
1968
|
+
- name: wikibooks
|
1969
|
+
engine: mediawiki
|
1970
|
+
weight: 0.5
|
1971
|
+
shortcut: wb
|
1972
|
+
categories: [general, wikimedia]
|
1973
|
+
base_url: "https://{language}.wikibooks.org/"
|
1974
|
+
search_type: text
|
1975
|
+
disabled: true
|
1976
|
+
about:
|
1977
|
+
website: https://www.wikibooks.org/
|
1978
|
+
wikidata_id: Q367
|
1979
|
+
|
1980
|
+
- name: wikinews
|
1981
|
+
engine: mediawiki
|
1982
|
+
shortcut: wn
|
1983
|
+
categories: [news, wikimedia]
|
1984
|
+
base_url: "https://{language}.wikinews.org/"
|
1985
|
+
search_type: text
|
1986
|
+
srsort: create_timestamp_desc
|
1987
|
+
about:
|
1988
|
+
website: https://www.wikinews.org/
|
1989
|
+
wikidata_id: Q964
|
1990
|
+
|
1991
|
+
- name: wikiquote
|
1992
|
+
engine: mediawiki
|
1993
|
+
weight: 0.5
|
1994
|
+
shortcut: wq
|
1995
|
+
categories: [general, wikimedia]
|
1996
|
+
base_url: "https://{language}.wikiquote.org/"
|
1997
|
+
search_type: text
|
1998
|
+
disabled: true
|
1999
|
+
additional_tests:
|
2000
|
+
rosebud: *test_rosebud
|
2001
|
+
about:
|
2002
|
+
website: https://www.wikiquote.org/
|
2003
|
+
wikidata_id: Q369
|
2004
|
+
|
2005
|
+
- name: wikisource
|
2006
|
+
engine: mediawiki
|
2007
|
+
weight: 0.5
|
2008
|
+
shortcut: ws
|
2009
|
+
categories: [general, wikimedia]
|
2010
|
+
base_url: "https://{language}.wikisource.org/"
|
2011
|
+
search_type: text
|
2012
|
+
disabled: true
|
2013
|
+
about:
|
2014
|
+
website: https://www.wikisource.org/
|
2015
|
+
wikidata_id: Q263
|
2016
|
+
|
2017
|
+
- name: wikispecies
|
2018
|
+
engine: mediawiki
|
2019
|
+
shortcut: wsp
|
2020
|
+
categories: [general, science, wikimedia]
|
2021
|
+
base_url: "https://species.wikimedia.org/"
|
2022
|
+
search_type: text
|
2023
|
+
disabled: true
|
2024
|
+
about:
|
2025
|
+
website: https://species.wikimedia.org/
|
2026
|
+
wikidata_id: Q13679
|
2027
|
+
tests:
|
2028
|
+
wikispecies:
|
2029
|
+
matrix:
|
2030
|
+
query: "Campbell, L.I. et al. 2011: MicroRNAs"
|
2031
|
+
lang: en
|
2032
|
+
result_container:
|
2033
|
+
- not_empty
|
2034
|
+
- ['one_title_contains', 'Tardigrada']
|
2035
|
+
test:
|
2036
|
+
- unique_results
|
2037
|
+
|
2038
|
+
- name: wiktionary
|
2039
|
+
engine: mediawiki
|
2040
|
+
shortcut: wt
|
2041
|
+
categories: [dictionaries, wikimedia]
|
2042
|
+
base_url: "https://{language}.wiktionary.org/"
|
2043
|
+
search_type: text
|
2044
|
+
about:
|
2045
|
+
website: https://www.wiktionary.org/
|
2046
|
+
wikidata_id: Q151
|
2047
|
+
|
2048
|
+
- name: wikiversity
|
2049
|
+
engine: mediawiki
|
2050
|
+
weight: 0.5
|
2051
|
+
shortcut: wv
|
2052
|
+
categories: [general, wikimedia]
|
2053
|
+
base_url: "https://{language}.wikiversity.org/"
|
2054
|
+
search_type: text
|
2055
|
+
disabled: true
|
2056
|
+
about:
|
2057
|
+
website: https://www.wikiversity.org/
|
2058
|
+
wikidata_id: Q370
|
2059
|
+
|
2060
|
+
- name: wikivoyage
|
2061
|
+
engine: mediawiki
|
2062
|
+
weight: 0.5
|
2063
|
+
shortcut: wy
|
2064
|
+
categories: [general, wikimedia]
|
2065
|
+
base_url: "https://{language}.wikivoyage.org/"
|
2066
|
+
search_type: text
|
2067
|
+
disabled: true
|
2068
|
+
about:
|
2069
|
+
website: https://www.wikivoyage.org/
|
2070
|
+
wikidata_id: Q373
|
2071
|
+
|
2072
|
+
- name: wikicommons.images
|
2073
|
+
engine: wikicommons
|
2074
|
+
shortcut: wc
|
2075
|
+
categories: images
|
2076
|
+
search_type: images
|
2077
|
+
number_of_results: 10
|
2078
|
+
|
2079
|
+
- name: wikicommons.videos
|
2080
|
+
engine: wikicommons
|
2081
|
+
shortcut: wcv
|
2082
|
+
categories: videos
|
2083
|
+
search_type: videos
|
2084
|
+
number_of_results: 10
|
2085
|
+
|
2086
|
+
- name: wikicommons.audio
|
2087
|
+
engine: wikicommons
|
2088
|
+
shortcut: wca
|
2089
|
+
categories: music
|
2090
|
+
search_type: audio
|
2091
|
+
number_of_results: 10
|
2092
|
+
|
2093
|
+
- name: wikicommons.files
|
2094
|
+
engine: wikicommons
|
2095
|
+
shortcut: wcf
|
2096
|
+
categories: files
|
2097
|
+
search_type: files
|
2098
|
+
number_of_results: 10
|
2099
|
+
|
2100
|
+
- name: wolframalpha
|
2101
|
+
shortcut: wa
|
2102
|
+
# You can use the engine using the official stable API, but you need an API
|
2103
|
+
# key. See: https://products.wolframalpha.com/api/
|
2104
|
+
#
|
2105
|
+
# engine: wolframalpha_api
|
2106
|
+
# api_key: ''
|
2107
|
+
#
|
2108
|
+
# Or you can use the html non-stable engine, activated by default
|
2109
|
+
engine: wolframalpha_noapi
|
2110
|
+
timeout: 6.0
|
2111
|
+
categories: general
|
2112
|
+
disabled: true
|
2113
|
+
|
2114
|
+
- name: dictzone
|
2115
|
+
engine: dictzone
|
2116
|
+
shortcut: dc
|
2117
|
+
|
2118
|
+
- name: mymemory translated
|
2119
|
+
engine: translated
|
2120
|
+
shortcut: tl
|
2121
|
+
timeout: 5.0
|
2122
|
+
# You can use without an API key, but you are limited to 1000 words/day
|
2123
|
+
# See: https://mymemory.translated.net/doc/usagelimits.php
|
2124
|
+
# api_key: ''
|
2125
|
+
|
2126
|
+
# Required dependency: mysql-connector-python
|
2127
|
+
# - name: mysql
|
2128
|
+
# engine: mysql_server
|
2129
|
+
# database: mydatabase
|
2130
|
+
# username: user
|
2131
|
+
# password: pass
|
2132
|
+
# limit: 10
|
2133
|
+
# query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
|
2134
|
+
# shortcut: mysql
|
2135
|
+
|
2136
|
+
# Required dependency: mariadb
|
2137
|
+
# - name: mariadb
|
2138
|
+
# engine: mariadb_server
|
2139
|
+
# database: mydatabase
|
2140
|
+
# username: user
|
2141
|
+
# password: pass
|
2142
|
+
# limit: 10
|
2143
|
+
# query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
|
2144
|
+
# shortcut: mdb
|
2145
|
+
|
2146
|
+
- name: 1337x
|
2147
|
+
engine: 1337x
|
2148
|
+
shortcut: 1337x
|
2149
|
+
disabled: true
|
2150
|
+
|
2151
|
+
- name: duden
|
2152
|
+
engine: duden
|
2153
|
+
shortcut: du
|
2154
|
+
disabled: true
|
2155
|
+
|
2156
|
+
- name: seznam
|
2157
|
+
shortcut: szn
|
2158
|
+
engine: seznam
|
2159
|
+
disabled: true
|
2160
|
+
|
2161
|
+
# - name: deepl
|
2162
|
+
# engine: deepl
|
2163
|
+
# shortcut: dpl
|
2164
|
+
# # You can use the engine using the official stable API, but you need an API key
|
2165
|
+
# # See: https://www.deepl.com/pro-api?cta=header-pro-api
|
2166
|
+
# api_key: '' # required!
|
2167
|
+
# timeout: 5.0
|
2168
|
+
# disabled: true
|
2169
|
+
|
2170
|
+
- name: mojeek
|
2171
|
+
shortcut: mjk
|
2172
|
+
engine: mojeek
|
2173
|
+
categories: [general, web]
|
2174
|
+
disabled: true
|
2175
|
+
|
2176
|
+
- name: mojeek images
|
2177
|
+
shortcut: mjkimg
|
2178
|
+
engine: mojeek
|
2179
|
+
categories: [images, web]
|
2180
|
+
search_type: images
|
2181
|
+
paging: false
|
2182
|
+
disabled: true
|
2183
|
+
|
2184
|
+
- name: mojeek news
|
2185
|
+
shortcut: mjknews
|
2186
|
+
engine: mojeek
|
2187
|
+
categories: [news, web]
|
2188
|
+
search_type: news
|
2189
|
+
paging: false
|
2190
|
+
disabled: true
|
2191
|
+
|
2192
|
+
- name: moviepilot
|
2193
|
+
engine: moviepilot
|
2194
|
+
shortcut: mp
|
2195
|
+
disabled: true
|
2196
|
+
|
2197
|
+
- name: naver
|
2198
|
+
shortcut: nvr
|
2199
|
+
categories: [general, web]
|
2200
|
+
engine: xpath
|
2201
|
+
paging: true
|
2202
|
+
search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
|
2203
|
+
url_xpath: //a[@class="link_tit"]/@href
|
2204
|
+
title_xpath: //a[@class="link_tit"]
|
2205
|
+
content_xpath: //div[@class="total_dsc_wrap"]/a
|
2206
|
+
first_page_num: 1
|
2207
|
+
page_size: 10
|
2208
|
+
disabled: true
|
2209
|
+
about:
|
2210
|
+
website: https://www.naver.com/
|
2211
|
+
wikidata_id: Q485639
|
2212
|
+
official_api_documentation: https://developers.naver.com/docs/nmt/examples/
|
2213
|
+
use_official_api: false
|
2214
|
+
require_api_key: false
|
2215
|
+
results: HTML
|
2216
|
+
language: ko
|
2217
|
+
|
2218
|
+
- name: rubygems
|
2219
|
+
shortcut: rbg
|
2220
|
+
engine: xpath
|
2221
|
+
paging: true
|
2222
|
+
search_url: https://rubygems.org/search?page={pageno}&query={query}
|
2223
|
+
results_xpath: /html/body/main/div/a[@class="gems__gem"]
|
2224
|
+
url_xpath: ./@href
|
2225
|
+
title_xpath: ./span/h2
|
2226
|
+
content_xpath: ./span/p
|
2227
|
+
suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
|
2228
|
+
first_page_num: 1
|
2229
|
+
categories: [it, packages]
|
2230
|
+
disabled: true
|
2231
|
+
about:
|
2232
|
+
website: https://rubygems.org/
|
2233
|
+
wikidata_id: Q1853420
|
2234
|
+
official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
|
2235
|
+
use_official_api: false
|
2236
|
+
require_api_key: false
|
2237
|
+
results: HTML
|
2238
|
+
|
2239
|
+
- name: peertube
|
2240
|
+
engine: peertube
|
2241
|
+
shortcut: ptb
|
2242
|
+
paging: true
|
2243
|
+
# alternatives see: https://instances.joinpeertube.org/instances
|
2244
|
+
# base_url: https://tube.4aem.com
|
2245
|
+
categories: videos
|
2246
|
+
disabled: true
|
2247
|
+
timeout: 6.0
|
2248
|
+
|
2249
|
+
- name: mediathekviewweb
|
2250
|
+
engine: mediathekviewweb
|
2251
|
+
shortcut: mvw
|
2252
|
+
disabled: true
|
2253
|
+
|
2254
|
+
- name: yacy
|
2255
|
+
# https://docs.searxng.org/dev/engines/online/yacy.html
|
2256
|
+
engine: yacy
|
2257
|
+
categories: general
|
2258
|
+
search_type: text
|
2259
|
+
base_url:
|
2260
|
+
- https://yacy.searchlab.eu
|
2261
|
+
# see https://github.com/searxng/searxng/pull/3631#issuecomment-2240903027
|
2262
|
+
# - https://search.kyun.li
|
2263
|
+
# - https://yacy.securecomcorp.eu
|
2264
|
+
# - https://yacy.myserv.ca
|
2265
|
+
# - https://yacy.nsupdate.info
|
2266
|
+
# - https://yacy.electroncash.de
|
2267
|
+
shortcut: ya
|
2268
|
+
disabled: true
|
2269
|
+
# if you aren't using HTTPS for your local yacy instance disable https
|
2270
|
+
# enable_http: false
|
2271
|
+
search_mode: 'global'
|
2272
|
+
# timeout can be reduced in 'local' search mode
|
2273
|
+
timeout: 5.0
|
2274
|
+
|
2275
|
+
- name: yacy images
|
2276
|
+
engine: yacy
|
2277
|
+
network: yacy
|
2278
|
+
categories: images
|
2279
|
+
search_type: image
|
2280
|
+
shortcut: yai
|
2281
|
+
disabled: true
|
2282
|
+
# timeout can be reduced in 'local' search mode
|
2283
|
+
timeout: 5.0
|
2284
|
+
|
2285
|
+
- name: rumble
|
2286
|
+
engine: rumble
|
2287
|
+
shortcut: ru
|
2288
|
+
base_url: https://rumble.com/
|
2289
|
+
paging: true
|
2290
|
+
categories: videos
|
2291
|
+
disabled: true
|
2292
|
+
|
2293
|
+
- name: livespace
|
2294
|
+
engine: livespace
|
2295
|
+
shortcut: ls
|
2296
|
+
categories: videos
|
2297
|
+
disabled: true
|
2298
|
+
timeout: 5.0
|
2299
|
+
|
2300
|
+
- name: wordnik
|
2301
|
+
engine: wordnik
|
2302
|
+
shortcut: def
|
2303
|
+
categories: [dictionaries]
|
2304
|
+
timeout: 5.0
|
2305
|
+
|
2306
|
+
- name: woxikon.de synonyme
|
2307
|
+
engine: xpath
|
2308
|
+
shortcut: woxi
|
2309
|
+
categories: [dictionaries]
|
2310
|
+
timeout: 5.0
|
2311
|
+
disabled: true
|
2312
|
+
search_url: https://synonyme.woxikon.de/synonyme/{query}.php
|
2313
|
+
url_xpath: //div[@class="upper-synonyms"]/a/@href
|
2314
|
+
content_xpath: //div[@class="synonyms-list-group"]
|
2315
|
+
title_xpath: //div[@class="upper-synonyms"]/a
|
2316
|
+
no_result_for_http_status: [404]
|
2317
|
+
about:
|
2318
|
+
website: https://www.woxikon.de/
|
2319
|
+
wikidata_id: # No Wikidata ID
|
2320
|
+
use_official_api: false
|
2321
|
+
require_api_key: false
|
2322
|
+
results: HTML
|
2323
|
+
language: de
|
2324
|
+
|
2325
|
+
- name: seekr news
|
2326
|
+
engine: seekr
|
2327
|
+
shortcut: senews
|
2328
|
+
categories: news
|
2329
|
+
seekr_category: news
|
2330
|
+
disabled: true
|
2331
|
+
|
2332
|
+
- name: seekr images
|
2333
|
+
engine: seekr
|
2334
|
+
network: seekr news
|
2335
|
+
shortcut: seimg
|
2336
|
+
categories: images
|
2337
|
+
seekr_category: images
|
2338
|
+
disabled: true
|
2339
|
+
|
2340
|
+
- name: seekr videos
|
2341
|
+
engine: seekr
|
2342
|
+
network: seekr news
|
2343
|
+
shortcut: sevid
|
2344
|
+
categories: videos
|
2345
|
+
seekr_category: videos
|
2346
|
+
disabled: true
|
2347
|
+
|
2348
|
+
- name: stract
|
2349
|
+
engine: stract
|
2350
|
+
shortcut: str
|
2351
|
+
disabled: true
|
2352
|
+
|
2353
|
+
- name: svgrepo
|
2354
|
+
engine: svgrepo
|
2355
|
+
shortcut: svg
|
2356
|
+
timeout: 10.0
|
2357
|
+
disabled: true
|
2358
|
+
|
2359
|
+
- name: tootfinder
|
2360
|
+
engine: tootfinder
|
2361
|
+
shortcut: toot
|
2362
|
+
|
2363
|
+
- name: voidlinux
|
2364
|
+
engine: voidlinux
|
2365
|
+
shortcut: void
|
2366
|
+
disabled: true
|
2367
|
+
|
2368
|
+
- name: wallhaven
|
2369
|
+
engine: wallhaven
|
2370
|
+
# api_key: abcdefghijklmnopqrstuvwxyz
|
2371
|
+
shortcut: wh
|
2372
|
+
|
2373
|
+
# wikimini: online encyclopedia for children
|
2374
|
+
# The fulltext and title parameter is necessary for Wikimini because
|
2375
|
+
# sometimes it will not show the results and redirect instead
|
2376
|
+
- name: wikimini
|
2377
|
+
engine: xpath
|
2378
|
+
shortcut: wkmn
|
2379
|
+
search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
|
2380
|
+
url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
|
2381
|
+
title_xpath: //li//div[@class="mw-search-result-heading"]/a
|
2382
|
+
content_xpath: //li/div[@class="searchresult"]
|
2383
|
+
categories: general
|
2384
|
+
disabled: true
|
2385
|
+
about:
|
2386
|
+
website: https://wikimini.org/
|
2387
|
+
wikidata_id: Q3568032
|
2388
|
+
use_official_api: false
|
2389
|
+
require_api_key: false
|
2390
|
+
results: HTML
|
2391
|
+
language: fr
|
2392
|
+
|
2393
|
+
- name: wttr.in
|
2394
|
+
engine: wttr
|
2395
|
+
shortcut: wttr
|
2396
|
+
timeout: 9.0
|
2397
|
+
|
2398
|
+
- name: yummly
|
2399
|
+
engine: yummly
|
2400
|
+
shortcut: yum
|
2401
|
+
disabled: true
|
2402
|
+
|
2403
|
+
- name: brave
|
2404
|
+
engine: brave
|
2405
|
+
shortcut: br
|
2406
|
+
time_range_support: true
|
2407
|
+
paging: true
|
2408
|
+
categories: [general, web]
|
2409
|
+
brave_category: search
|
2410
|
+
# brave_spellcheck: true
|
2411
|
+
|
2412
|
+
- name: brave.images
|
2413
|
+
engine: brave
|
2414
|
+
network: brave
|
2415
|
+
shortcut: brimg
|
2416
|
+
categories: [images, web]
|
2417
|
+
brave_category: images
|
2418
|
+
|
2419
|
+
- name: brave.videos
|
2420
|
+
engine: brave
|
2421
|
+
network: brave
|
2422
|
+
shortcut: brvid
|
2423
|
+
categories: [videos, web]
|
2424
|
+
brave_category: videos
|
2425
|
+
|
2426
|
+
- name: brave.news
|
2427
|
+
engine: brave
|
2428
|
+
network: brave
|
2429
|
+
shortcut: brnews
|
2430
|
+
categories: news
|
2431
|
+
brave_category: news
|
2432
|
+
|
2433
|
+
# - name: brave.goggles
|
2434
|
+
# engine: brave
|
2435
|
+
# network: brave
|
2436
|
+
# shortcut: brgog
|
2437
|
+
# time_range_support: true
|
2438
|
+
# paging: true
|
2439
|
+
# categories: [general, web]
|
2440
|
+
# brave_category: goggles
|
2441
|
+
# Goggles: # required! This should be a URL ending in .goggle
|
2442
|
+
|
2443
|
+
- name: lib.rs
|
2444
|
+
shortcut: lrs
|
2445
|
+
engine: lib_rs
|
2446
|
+
disabled: true
|
2447
|
+
|
2448
|
+
- name: sourcehut
|
2449
|
+
shortcut: srht
|
2450
|
+
engine: xpath
|
2451
|
+
paging: true
|
2452
|
+
search_url: https://sr.ht/projects?page={pageno}&search={query}
|
2453
|
+
results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
|
2454
|
+
url_xpath: ./h4/a[2]/@href
|
2455
|
+
title_xpath: ./h4/a[2]
|
2456
|
+
content_xpath: ./p
|
2457
|
+
first_page_num: 1
|
2458
|
+
categories: [it, repos]
|
2459
|
+
disabled: true
|
2460
|
+
about:
|
2461
|
+
website: https://sr.ht
|
2462
|
+
wikidata_id: Q78514485
|
2463
|
+
official_api_documentation: https://man.sr.ht/
|
2464
|
+
use_official_api: false
|
2465
|
+
require_api_key: false
|
2466
|
+
results: HTML
|
2467
|
+
|
2468
|
+
- name: goo
|
2469
|
+
shortcut: goo
|
2470
|
+
engine: xpath
|
2471
|
+
paging: true
|
2472
|
+
search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
|
2473
|
+
url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
|
2474
|
+
title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
|
2475
|
+
content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
|
2476
|
+
first_page_num: 0
|
2477
|
+
categories: [general, web]
|
2478
|
+
disabled: true
|
2479
|
+
timeout: 4.0
|
2480
|
+
about:
|
2481
|
+
website: https://search.goo.ne.jp
|
2482
|
+
wikidata_id: Q249044
|
2483
|
+
use_official_api: false
|
2484
|
+
require_api_key: false
|
2485
|
+
results: HTML
|
2486
|
+
language: ja
|
2487
|
+
|
2488
|
+
- name: bt4g
|
2489
|
+
engine: bt4g
|
2490
|
+
shortcut: bt4g
|
2491
|
+
|
2492
|
+
- name: pkg.go.dev
|
2493
|
+
engine: pkg_go_dev
|
2494
|
+
shortcut: pgo
|
2495
|
+
disabled: true
|
2496
|
+
|
2497
|
+
# Doku engine lets you access to any Doku wiki instance:
|
2498
|
+
# A public one or a privete/corporate one.
|
2499
|
+
# - name: ubuntuwiki
|
2500
|
+
# engine: doku
|
2501
|
+
# shortcut: uw
|
2502
|
+
# base_url: 'https://doc.ubuntu-fr.org'
|
2503
|
+
|
2504
|
+
# Be careful when enabling this engine if you are
|
2505
|
+
# running a public instance. Do not expose any sensitive
|
2506
|
+
# information. You can restrict access by configuring a list
|
2507
|
+
# of access tokens under tokens.
|
2508
|
+
# - name: git grep
|
2509
|
+
# engine: command
|
2510
|
+
# command: ['git', 'grep', '{{QUERY}}']
|
2511
|
+
# shortcut: gg
|
2512
|
+
# tokens: []
|
2513
|
+
# disabled: true
|
2514
|
+
# delimiter:
|
2515
|
+
# chars: ':'
|
2516
|
+
# keys: ['filepath', 'code']
|
2517
|
+
|
2518
|
+
# Be careful when enabling this engine if you are
|
2519
|
+
# running a public instance. Do not expose any sensitive
|
2520
|
+
# information. You can restrict access by configuring a list
|
2521
|
+
# of access tokens under tokens.
|
2522
|
+
# - name: locate
|
2523
|
+
# engine: command
|
2524
|
+
# command: ['locate', '{{QUERY}}']
|
2525
|
+
# shortcut: loc
|
2526
|
+
# tokens: []
|
2527
|
+
# disabled: true
|
2528
|
+
# delimiter:
|
2529
|
+
# chars: ' '
|
2530
|
+
# keys: ['line']
|
2531
|
+
|
2532
|
+
# Be careful when enabling this engine if you are
|
2533
|
+
# running a public instance. Do not expose any sensitive
|
2534
|
+
# information. You can restrict access by configuring a list
|
2535
|
+
# of access tokens under tokens.
|
2536
|
+
# - name: find
|
2537
|
+
# engine: command
|
2538
|
+
# command: ['find', '.', '-name', '{{QUERY}}']
|
2539
|
+
# query_type: path
|
2540
|
+
# shortcut: fnd
|
2541
|
+
# tokens: []
|
2542
|
+
# disabled: true
|
2543
|
+
# delimiter:
|
2544
|
+
# chars: ' '
|
2545
|
+
# keys: ['line']
|
2546
|
+
|
2547
|
+
# Be careful when enabling this engine if you are
|
2548
|
+
# running a public instance. Do not expose any sensitive
|
2549
|
+
# information. You can restrict access by configuring a list
|
2550
|
+
# of access tokens under tokens.
|
2551
|
+
# - name: pattern search in files
|
2552
|
+
# engine: command
|
2553
|
+
# command: ['fgrep', '{{QUERY}}']
|
2554
|
+
# shortcut: fgr
|
2555
|
+
# tokens: []
|
2556
|
+
# disabled: true
|
2557
|
+
# delimiter:
|
2558
|
+
# chars: ' '
|
2559
|
+
# keys: ['line']
|
2560
|
+
|
2561
|
+
# Be careful when enabling this engine if you are
|
2562
|
+
# running a public instance. Do not expose any sensitive
|
2563
|
+
# information. You can restrict access by configuring a list
|
2564
|
+
# of access tokens under tokens.
|
2565
|
+
# - name: regex search in files
|
2566
|
+
# engine: command
|
2567
|
+
# command: ['grep', '{{QUERY}}']
|
2568
|
+
# shortcut: gr
|
2569
|
+
# tokens: []
|
2570
|
+
# disabled: true
|
2571
|
+
# delimiter:
|
2572
|
+
# chars: ' '
|
2573
|
+
# keys: ['line']
|
2574
|
+
|
2575
|
+
doi_resolvers:
|
2576
|
+
oadoi.org: 'https://oadoi.org/'
|
2577
|
+
doi.org: 'https://doi.org/'
|
2578
|
+
doai.io: 'https://dissem.in/'
|
2579
|
+
sci-hub.se: 'https://sci-hub.se/'
|
2580
|
+
sci-hub.st: 'https://sci-hub.st/'
|
2581
|
+
sci-hub.ru: 'https://sci-hub.ru/'
|
2582
|
+
|
2583
|
+
default_doi_resolver: 'oadoi.org'
|