settings.yml 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  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. brand:
  16. new_issue_url: https://github.com/searxng/searxng/issues/new
  17. docs_url: https://docs.searxng.org/
  18. public_instances: https://searx.space
  19. wiki_url: https://github.com/searxng/searxng/wiki
  20. issue_url: https://github.com/searxng/searxng/issues
  21. search:
  22. # Filter results. 0: None, 1: Moderate, 2: Strict
  23. safe_search: 0
  24. # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "yandex", "mwmbl",
  25. # "seznam", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
  26. # by default.
  27. autocomplete: ""
  28. # minimun characters to type before autocompleter starts
  29. autocomplete_min: 4
  30. # Default search language - leave blank to detect from browser information or
  31. # use codes from 'languages.py'
  32. default_lang: "auto"
  33. # Available languages
  34. # languages:
  35. # - all
  36. # - en
  37. # - en-US
  38. # - de
  39. # - it-IT
  40. # - fr
  41. # - fr-BE
  42. # ban time in seconds after engine errors
  43. ban_time_on_fail: 5
  44. # max ban time in seconds after engine errors
  45. max_ban_time_on_fail: 120
  46. suspended_times:
  47. # Engine suspension time after error (in seconds; set to 0 to disable)
  48. # For error "Access denied" and "HTTP error [402, 403]"
  49. SearxEngineAccessDenied: 86400
  50. # For error "CAPTCHA"
  51. SearxEngineCaptcha: 86400
  52. # For error "Too many request" and "HTTP error 429"
  53. SearxEngineTooManyRequests: 3600
  54. # Cloudflare CAPTCHA
  55. cf_SearxEngineCaptcha: 1296000
  56. cf_SearxEngineAccessDenied: 86400
  57. # ReCAPTCHA
  58. recaptcha_SearxEngineCaptcha: 604800
  59. # remove format to deny access, use lower case.
  60. # formats: [html, csv, json, rss]
  61. formats:
  62. - html
  63. server:
  64. # If you change port, bind_address or base_url don't forget to rebuild
  65. # instance's environment (make buildenv). Is overwritten by ${SEARXNG_PORT}
  66. # and ${SEARXNG_BIND_ADDRESS}
  67. port: 8888
  68. bind_address: "127.0.0.1"
  69. # public URL of the instance, to ensure correct inbound links. Is overwritten
  70. # by ${SEARXNG_URL}.
  71. base_url: false # "http://example.com/location"
  72. limiter: false # rate limit the number of request on the instance, block some bots
  73. public_instance: false # enable features designed only for public instances
  74. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  75. # values there.
  76. secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
  77. # Proxying image results through searx
  78. image_proxy: false
  79. # 1.0 and 1.1 are supported
  80. http_protocol_version: "1.0"
  81. # POST queries are more secure as they don't show up in history but may cause
  82. # problems when using Firefox containers
  83. method: "POST"
  84. default_http_headers:
  85. X-Content-Type-Options: nosniff
  86. X-XSS-Protection: 1; mode=block
  87. X-Download-Options: noopen
  88. X-Robots-Tag: noindex, nofollow
  89. Referrer-Policy: no-referrer
  90. redis:
  91. # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
  92. # https://docs.searxng.org/admin/settings/settings_redis.html#settings-redis
  93. url: false
  94. ui:
  95. # Custom static path - leave it blank if you didn't change
  96. static_path: ""
  97. static_use_hash: false
  98. # Custom templates path - leave it blank if you didn't change
  99. templates_path: ""
  100. # query_in_title: When true, the result page's titles contains the query
  101. # it decreases the privacy, since the browser can records the page titles.
  102. query_in_title: false
  103. # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
  104. infinite_scroll: false
  105. # ui theme
  106. default_theme: simple
  107. # center the results ?
  108. center_alignment: false
  109. # URL prefix of the internet archive, don't forget trailing slash (if needed).
  110. # cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
  111. # Default interface locale - leave blank to detect from browser information or
  112. # use codes from the 'locales' config section
  113. default_locale: ""
  114. # Open result links in a new tab by default
  115. # results_on_new_tab: false
  116. theme_args:
  117. # style of simple theme: auto, light, dark
  118. simple_style: auto
  119. # Perform search immediately if a category selected.
  120. # Disable to select multiple categories at once and start the search manually.
  121. search_on_category_select: true
  122. # Hotkeys: default or vim
  123. hotkeys: default
  124. # Lock arbitrary settings on the preferences page. To find the ID of the user
  125. # setting you want to lock, check the ID of the form on the page "preferences".
  126. #
  127. # preferences:
  128. # lock:
  129. # - language
  130. # - autocomplete
  131. # - method
  132. # - query_in_title
  133. # searx supports result proxification using an external service:
  134. # https://github.com/asciimoo/morty uncomment below section if you have running
  135. # morty proxy the key is base64 encoded (keep the !!binary notation)
  136. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  137. #
  138. # result_proxy:
  139. # url: http://127.0.0.1:3000/
  140. # # the key is a base64 encoded string, the YAML !!binary prefix is optional
  141. # key: !!binary "your_morty_proxy_key"
  142. # # [true|false] enable the "proxy" button next to each result
  143. # proxify_results: true
  144. # communication with search engines
  145. #
  146. outgoing:
  147. # default timeout in seconds, can be override by engine
  148. request_timeout: 3.0
  149. # the maximum timeout in seconds
  150. # max_request_timeout: 10.0
  151. # suffix of searx_useragent, could contain information like an email address
  152. # to the administrator
  153. useragent_suffix: ""
  154. # The maximum number of concurrent connections that may be established.
  155. pool_connections: 100
  156. # Allow the connection pool to maintain keep-alive connections below this
  157. # point.
  158. pool_maxsize: 20
  159. # See https://www.python-httpx.org/http2/
  160. enable_http2: true
  161. # uncomment below section if you want to use a custom server certificate
  162. # see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
  163. # and https://www.python-httpx.org/compatibility/#ssl-configuration
  164. # verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
  165. #
  166. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  167. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  168. # are also supported: see
  169. # https://2.python-requests.org/en/latest/user/advanced/#socks
  170. #
  171. # proxies:
  172. # all://:
  173. # - http://proxy1:8080
  174. # - http://proxy2:8080
  175. #
  176. # using_tor_proxy: true
  177. #
  178. # Extra seconds to add in order to account for the time taken by the proxy
  179. #
  180. # extra_proxy_timeout: 10.0
  181. #
  182. # uncomment below section only if you have more than one network interface
  183. # which can be the source of outgoing search requests
  184. #
  185. # source_ips:
  186. # - 1.1.1.1
  187. # - 1.1.1.2
  188. # - fe80::/126
  189. # External plugin configuration, for more details see
  190. # https://docs.searxng.org/dev/plugins.html
  191. #
  192. # plugins:
  193. # - plugin1
  194. # - plugin2
  195. # - ...
  196. # Comment or un-comment plugin to activate / deactivate by default.
  197. #
  198. # enabled_plugins:
  199. # # these plugins are enabled if nothing is configured ..
  200. # - 'Hash plugin'
  201. # - 'Self Information'
  202. # - 'Tracker URL remover'
  203. # - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
  204. # # these plugins are disabled if nothing is configured ..
  205. # - 'Hostname replace' # see hostname_replace configuration below
  206. # - 'Open Access DOI rewrite'
  207. # - 'Tor check plugin'
  208. # # Read the docs before activate: auto-detection of the language could be
  209. # # detrimental to users expectations / users can activate the plugin in the
  210. # # preferences if they want.
  211. # - 'Autodetect search language'
  212. # Configuration of the "Hostname replace" plugin:
  213. #
  214. # hostname_replace:
  215. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  216. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  217. # '(.*\.)?youtube-noocookie\.com$': 'yotter.example.com'
  218. # '(.*\.)?reddit\.com$': 'teddit.example.com'
  219. # '(.*\.)?redd\.it$': 'teddit.example.com'
  220. # '(www\.)?twitter\.com$': 'nitter.example.com'
  221. # # to remove matching host names from result list, set value to false
  222. # 'spam\.example\.com': false
  223. checker:
  224. # disable checker when in debug mode
  225. off_when_debug: true
  226. # use "scheduling: false" to disable scheduling
  227. # scheduling: interval or int
  228. # to activate the scheduler:
  229. # * uncomment "scheduling" section
  230. # * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
  231. # to your uwsgi.ini
  232. # scheduling:
  233. # start_after: [300, 1800] # delay to start the first run of the checker
  234. # every: [86400, 90000] # how often the checker runs
  235. # additional tests: only for the YAML anchors (see the engines section)
  236. #
  237. additional_tests:
  238. rosebud: &test_rosebud
  239. matrix:
  240. query: rosebud
  241. lang: en
  242. result_container:
  243. - not_empty
  244. - ['one_title_contains', 'citizen kane']
  245. test:
  246. - unique_results
  247. android: &test_android
  248. matrix:
  249. query: ['android']
  250. lang: ['en', 'de', 'fr', 'zh-CN']
  251. result_container:
  252. - not_empty
  253. - ['one_title_contains', 'google']
  254. test:
  255. - unique_results
  256. # tests: only for the YAML anchors (see the engines section)
  257. tests:
  258. infobox: &tests_infobox
  259. infobox:
  260. matrix:
  261. query: ["linux", "new york", "bbc"]
  262. result_container:
  263. - has_infobox
  264. categories_as_tabs:
  265. general:
  266. images:
  267. videos:
  268. news:
  269. map:
  270. music:
  271. it:
  272. science:
  273. files:
  274. social media:
  275. engines:
  276. - name: 9gag
  277. engine: 9gag
  278. shortcut: 9g
  279. disabled: true
  280. - name: annas archive
  281. engine: annas_archive
  282. disabled: true
  283. shortcut: aa
  284. # - name: annas articles
  285. # engine: annas_archive
  286. # shortcut: aaa
  287. # # https://docs.searxng.org/dev/engines/online/annas_archive.html
  288. # aa_content: 'journal_article' # book_any .. magazine, standards_document
  289. # aa_ext: 'pdf' # pdf, epub, ..
  290. # aa_sort: 'newest' # newest, oldest, largest, smallest
  291. - name: apk mirror
  292. engine: apkmirror
  293. timeout: 4.0
  294. shortcut: apkm
  295. disabled: true
  296. - name: apple app store
  297. engine: apple_app_store
  298. shortcut: aps
  299. disabled: true
  300. # Requires Tor
  301. - name: ahmia
  302. engine: ahmia
  303. categories: onions
  304. enable_http: true
  305. shortcut: ah
  306. - name: anaconda
  307. engine: xpath
  308. paging: true
  309. first_page_num: 0
  310. search_url: https://anaconda.org/search?q={query}&page={pageno}
  311. results_xpath: //tbody/tr
  312. url_xpath: ./td/h5/a[last()]/@href
  313. title_xpath: ./td/h5
  314. content_xpath: ./td[h5]/text()
  315. categories: it
  316. timeout: 6.0
  317. shortcut: conda
  318. disabled: true
  319. - name: arch linux wiki
  320. engine: archlinux
  321. shortcut: al
  322. - name: artic
  323. engine: artic
  324. shortcut: arc
  325. timeout: 4.0
  326. - name: arxiv
  327. engine: arxiv
  328. shortcut: arx
  329. timeout: 4.0
  330. # tmp suspended: dh key too small
  331. # - name: base
  332. # engine: base
  333. # shortcut: bs
  334. - name: bandcamp
  335. engine: bandcamp
  336. shortcut: bc
  337. categories: music
  338. - name: wikipedia
  339. engine: wikipedia
  340. shortcut: wp
  341. # add "list" to the array to get results in the results list
  342. display_type: ["infobox"]
  343. base_url: 'https://{language}.wikipedia.org/'
  344. categories: [general]
  345. - name: bilibili
  346. engine: bilibili
  347. shortcut: bil
  348. disabled: true
  349. - name: bing
  350. engine: bing
  351. shortcut: bi
  352. disabled: true
  353. - name: bing images
  354. engine: bing_images
  355. shortcut: bii
  356. - name: bing news
  357. engine: bing_news
  358. shortcut: bin
  359. - name: bing videos
  360. engine: bing_videos
  361. shortcut: biv
  362. - name: bitbucket
  363. engine: xpath
  364. paging: true
  365. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  366. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  367. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  368. content_xpath: //article[@class="repo-summary"]/p
  369. categories: [it, repos]
  370. timeout: 4.0
  371. disabled: true
  372. shortcut: bb
  373. about:
  374. website: https://bitbucket.org/
  375. wikidata_id: Q2493781
  376. official_api_documentation: https://developer.atlassian.com/bitbucket
  377. use_official_api: false
  378. require_api_key: false
  379. results: HTML
  380. - name: btdigg
  381. engine: btdigg
  382. shortcut: bt
  383. disabled: true
  384. - name: ccc-tv
  385. engine: xpath
  386. paging: false
  387. search_url: https://media.ccc.de/search/?q={query}
  388. url_xpath: //div[@class="caption"]/h3/a/@href
  389. title_xpath: //div[@class="caption"]/h3/a/text()
  390. content_xpath: //div[@class="caption"]/h4/@title
  391. categories: videos
  392. disabled: true
  393. shortcut: c3tv
  394. about:
  395. website: https://media.ccc.de/
  396. wikidata_id: Q80729951
  397. official_api_documentation: https://github.com/voc/voctoweb
  398. use_official_api: false
  399. require_api_key: false
  400. results: HTML
  401. # We don't set language: de here because media.ccc.de is not just
  402. # for a German audience. It contains many English videos and many
  403. # German videos have English subtitles.
  404. - name: openverse
  405. engine: openverse
  406. categories: images
  407. shortcut: opv
  408. - name: chefkoch
  409. engine: chefkoch
  410. shortcut: chef
  411. # to show premium or plus results too:
  412. # skip_premium: false
  413. # - name: core.ac.uk
  414. # engine: core
  415. # categories: science
  416. # shortcut: cor
  417. # # get your API key from: https://core.ac.uk/api-keys/register/
  418. # api_key: 'unset'
  419. - name: crossref
  420. engine: crossref
  421. shortcut: cr
  422. timeout: 30
  423. disabled: true
  424. - name: crowdview
  425. engine: json_engine
  426. shortcut: cv
  427. categories: general
  428. paging: false
  429. search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
  430. results_query: results
  431. url_query: link
  432. title_query: title
  433. content_query: snippet
  434. disabled: true
  435. about:
  436. website: https://crowdview.ai/
  437. - name: yep
  438. engine: json_engine
  439. shortcut: yep
  440. categories: general
  441. disabled: true
  442. paging: false
  443. content_html_to_text: true
  444. title_html_to_text: true
  445. search_url: https://api.yep.com/fs/1/?type=web&q={query}&no_correct=false&limit=100
  446. results_query: 1/results
  447. title_query: title
  448. url_query: url
  449. content_query: snippet
  450. about:
  451. website: https://yep.com
  452. use_official_api: false
  453. require_api_key: false
  454. results: JSON
  455. - name: curlie
  456. engine: xpath
  457. shortcut: cl
  458. categories: general
  459. disabled: true
  460. paging: true
  461. lang_all: ''
  462. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  463. page_size: 20
  464. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  465. url_xpath: ./div[@class="title-and-desc"]/a/@href
  466. title_xpath: ./div[@class="title-and-desc"]/a/div
  467. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  468. about:
  469. website: https://curlie.org/
  470. wikidata_id: Q60715723
  471. use_official_api: false
  472. require_api_key: false
  473. results: HTML
  474. - name: currency
  475. engine: currency_convert
  476. categories: general
  477. shortcut: cc
  478. - name: deezer
  479. engine: deezer
  480. shortcut: dz
  481. disabled: true
  482. - name: destatis
  483. engine: destatis
  484. shortcut: destat
  485. disabled: true
  486. - name: deviantart
  487. engine: deviantart
  488. shortcut: da
  489. timeout: 3.0
  490. - name: ddg definitions
  491. engine: duckduckgo_definitions
  492. shortcut: ddd
  493. weight: 2
  494. disabled: true
  495. tests: *tests_infobox
  496. # cloudflare protected
  497. # - name: digbt
  498. # engine: digbt
  499. # shortcut: dbt
  500. # timeout: 6.0
  501. # disabled: true
  502. - name: docker hub
  503. engine: docker_hub
  504. shortcut: dh
  505. categories: [it, packages]
  506. - name: erowid
  507. engine: xpath
  508. paging: true
  509. first_page_num: 0
  510. page_size: 30
  511. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  512. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  513. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  514. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  515. categories: []
  516. shortcut: ew
  517. disabled: true
  518. about:
  519. website: https://www.erowid.org/
  520. wikidata_id: Q1430691
  521. official_api_documentation:
  522. use_official_api: false
  523. require_api_key: false
  524. results: HTML
  525. # - name: elasticsearch
  526. # shortcut: es
  527. # engine: elasticsearch
  528. # base_url: http://localhost:9200
  529. # username: elastic
  530. # password: changeme
  531. # index: my-index
  532. # # available options: match, simple_query_string, term, terms, custom
  533. # query_type: match
  534. # # if query_type is set to custom, provide your query here
  535. # #custom_query_json: {"query":{"match_all": {}}}
  536. # #show_metadata: false
  537. # disabled: true
  538. - name: wikidata
  539. engine: wikidata
  540. shortcut: wd
  541. timeout: 3.0
  542. weight: 2
  543. # add "list" to the array to get results in the results list
  544. display_type: ["infobox"]
  545. tests: *tests_infobox
  546. categories: [general]
  547. - name: duckduckgo
  548. engine: duckduckgo
  549. shortcut: ddg
  550. - name: duckduckgo images
  551. engine: duckduckgo_extra
  552. categories: [images, web]
  553. ddg_category: images
  554. shortcut: ddi
  555. disabled: true
  556. - name: duckduckgo videos
  557. engine: duckduckgo_extra
  558. categories: [videos, web]
  559. ddg_category: videos
  560. shortcut: ddv
  561. disabled: true
  562. - name: duckduckgo news
  563. engine: duckduckgo_extra
  564. categories: [news, web]
  565. ddg_category: news
  566. shortcut: ddn
  567. disabled: true
  568. - name: duckduckgo weather
  569. engine: duckduckgo_weather
  570. shortcut: ddw
  571. disabled: true
  572. - name: apple maps
  573. engine: apple_maps
  574. shortcut: apm
  575. disabled: true
  576. timeout: 5.0
  577. - name: emojipedia
  578. engine: emojipedia
  579. timeout: 4.0
  580. shortcut: em
  581. disabled: true
  582. - name: tineye
  583. engine: tineye
  584. shortcut: tin
  585. timeout: 9.0
  586. disabled: true
  587. - name: etymonline
  588. engine: xpath
  589. paging: true
  590. search_url: https://etymonline.com/search?page={pageno}&q={query}
  591. url_xpath: //a[contains(@class, "word__name--")]/@href
  592. title_xpath: //a[contains(@class, "word__name--")]
  593. content_xpath: //section[contains(@class, "word__defination")]
  594. first_page_num: 1
  595. shortcut: et
  596. categories: [dictionaries]
  597. about:
  598. website: https://www.etymonline.com/
  599. wikidata_id: Q1188617
  600. official_api_documentation:
  601. use_official_api: false
  602. require_api_key: false
  603. results: HTML
  604. # - name: ebay
  605. # engine: ebay
  606. # shortcut: eb
  607. # base_url: 'https://www.ebay.com'
  608. # disabled: true
  609. # timeout: 5
  610. - name: 1x
  611. engine: www1x
  612. shortcut: 1x
  613. timeout: 3.0
  614. disabled: true
  615. - name: fdroid
  616. engine: fdroid
  617. shortcut: fd
  618. disabled: true
  619. - name: flickr
  620. categories: images
  621. shortcut: fl
  622. # You can use the engine using the official stable API, but you need an API
  623. # key, see: https://www.flickr.com/services/apps/create/
  624. # engine: flickr
  625. # api_key: 'apikey' # required!
  626. # Or you can use the html non-stable engine, activated by default
  627. engine: flickr_noapi
  628. - name: free software directory
  629. engine: mediawiki
  630. shortcut: fsd
  631. categories: [it, software wikis]
  632. base_url: https://directory.fsf.org/
  633. search_type: title
  634. timeout: 5.0
  635. disabled: true
  636. about:
  637. website: https://directory.fsf.org/
  638. wikidata_id: Q2470288
  639. # - name: freesound
  640. # engine: freesound
  641. # shortcut: fnd
  642. # disabled: true
  643. # timeout: 15.0
  644. # API key required, see: https://freesound.org/docs/api/overview.html
  645. # api_key: MyAPIkey
  646. - name: frinkiac
  647. engine: frinkiac
  648. shortcut: frk
  649. disabled: true
  650. - name: genius
  651. engine: genius
  652. shortcut: gen
  653. - name: gentoo
  654. engine: gentoo
  655. shortcut: ge
  656. timeout: 10.0
  657. - name: gitlab
  658. engine: json_engine
  659. paging: true
  660. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  661. url_query: web_url
  662. title_query: name_with_namespace
  663. content_query: description
  664. page_size: 20
  665. categories: [it, repos]
  666. shortcut: gl
  667. timeout: 10.0
  668. disabled: true
  669. about:
  670. website: https://about.gitlab.com/
  671. wikidata_id: Q16639197
  672. official_api_documentation: https://docs.gitlab.com/ee/api/
  673. use_official_api: false
  674. require_api_key: false
  675. results: JSON
  676. - name: github
  677. engine: github
  678. shortcut: gh
  679. # This a Gitea service. If you would like to use a different instance,
  680. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  681. # new engine by copying this and changing the name, shortcut and search_url.
  682. - name: codeberg
  683. engine: json_engine
  684. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  685. url_query: html_url
  686. title_query: name
  687. content_query: description
  688. categories: [it, repos]
  689. shortcut: cb
  690. disabled: true
  691. about:
  692. website: https://codeberg.org/
  693. wikidata_id:
  694. official_api_documentation: https://try.gitea.io/api/swagger
  695. use_official_api: false
  696. require_api_key: false
  697. results: JSON
  698. - name: google
  699. engine: google
  700. shortcut: go
  701. # additional_tests:
  702. # android: *test_android
  703. - name: google images
  704. engine: google_images
  705. shortcut: goi
  706. # additional_tests:
  707. # android: *test_android
  708. # dali:
  709. # matrix:
  710. # query: ['Dali Christ']
  711. # lang: ['en', 'de', 'fr', 'zh-CN']
  712. # result_container:
  713. # - ['one_title_contains', 'Salvador']
  714. - name: google news
  715. engine: google_news
  716. shortcut: gon
  717. # additional_tests:
  718. # android: *test_android
  719. - name: google videos
  720. engine: google_videos
  721. shortcut: gov
  722. # additional_tests:
  723. # android: *test_android
  724. - name: google scholar
  725. engine: google_scholar
  726. shortcut: gos
  727. - name: google play apps
  728. engine: google_play
  729. categories: [files, apps]
  730. shortcut: gpa
  731. play_categ: apps
  732. disabled: true
  733. - name: google play movies
  734. engine: google_play
  735. categories: videos
  736. shortcut: gpm
  737. play_categ: movies
  738. disabled: true
  739. - name: material icons
  740. engine: material_icons
  741. categories: images
  742. shortcut: mi
  743. disabled: true
  744. - name: gpodder
  745. engine: json_engine
  746. shortcut: gpod
  747. timeout: 4.0
  748. paging: false
  749. search_url: https://gpodder.net/search.json?q={query}
  750. url_query: url
  751. title_query: title
  752. content_query: description
  753. page_size: 19
  754. categories: music
  755. disabled: true
  756. about:
  757. website: https://gpodder.net
  758. wikidata_id: Q3093354
  759. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  760. use_official_api: false
  761. requires_api_key: false
  762. results: JSON
  763. - name: habrahabr
  764. engine: xpath
  765. paging: true
  766. search_url: https://habr.com/en/search/page{pageno}/?q={query}
  767. results_xpath: //article[contains(@class, "tm-articles-list__item")]
  768. url_xpath: .//a[@class="tm-title__link"]/@href
  769. title_xpath: .//a[@class="tm-title__link"]
  770. content_xpath: .//div[contains(@class, "article-formatted-body")]
  771. categories: it
  772. timeout: 4.0
  773. disabled: true
  774. shortcut: habr
  775. about:
  776. website: https://habr.com/
  777. wikidata_id: Q4494434
  778. official_api_documentation: https://habr.com/en/docs/help/api/
  779. use_official_api: false
  780. require_api_key: false
  781. results: HTML
  782. - name: hackernews
  783. engine: hackernews
  784. shortcut: hn
  785. disabled: true
  786. - name: hoogle
  787. engine: xpath
  788. paging: true
  789. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  790. results_xpath: '//div[@class="result"]'
  791. title_xpath: './/div[@class="ans"]//a'
  792. url_xpath: './/div[@class="ans"]//a/@href'
  793. content_xpath: './/div[@class="from"]'
  794. page_size: 20
  795. categories: [it, packages]
  796. shortcut: ho
  797. about:
  798. website: https://hoogle.haskell.org/
  799. wikidata_id: Q34010
  800. official_api_documentation: https://hackage.haskell.org/api
  801. use_official_api: false
  802. require_api_key: false
  803. results: JSON
  804. - name: imdb
  805. engine: imdb
  806. shortcut: imdb
  807. timeout: 6.0
  808. disabled: true
  809. - name: imgur
  810. engine: imgur
  811. shortcut: img
  812. disabled: true
  813. - name: ina
  814. engine: ina
  815. shortcut: in
  816. timeout: 6.0
  817. disabled: true
  818. - name: invidious
  819. engine: invidious
  820. # Instanes will be selected randomly, see https://api.invidious.io/ for
  821. # instances that are stable (good uptime) and close to you.
  822. base_url:
  823. - https://invidious.io.lol
  824. - https://invidious.fdn.fr
  825. - https://yt.artemislena.eu
  826. - https://invidious.tiekoetter.com
  827. - https://invidious.flokinet.to
  828. - https://vid.puffyan.us
  829. - https://invidious.privacydev.net
  830. - https://inv.tux.pizza
  831. shortcut: iv
  832. timeout: 3.0
  833. disabled: true
  834. - name: jisho
  835. engine: jisho
  836. shortcut: js
  837. timeout: 3.0
  838. disabled: true
  839. - name: kickass
  840. engine: kickass
  841. base_url:
  842. - https://kickasstorrents.to
  843. - https://kickasstorrents.cr
  844. - https://kickasstorrent.cr
  845. - https://kickass.sx
  846. - https://kat.am
  847. shortcut: kc
  848. timeout: 4.0
  849. - name: lemmy communities
  850. engine: lemmy
  851. lemmy_type: Communities
  852. shortcut: leco
  853. - name: lemmy users
  854. engine: lemmy
  855. network: lemmy communities
  856. lemmy_type: Users
  857. shortcut: leus
  858. - name: lemmy posts
  859. engine: lemmy
  860. network: lemmy communities
  861. lemmy_type: Posts
  862. shortcut: lepo
  863. - name: lemmy comments
  864. engine: lemmy
  865. network: lemmy communities
  866. lemmy_type: Comments
  867. shortcut: lecom
  868. - name: library genesis
  869. engine: xpath
  870. search_url: https://libgen.fun/search.php?req={query}
  871. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  872. title_xpath: //a[contains(@href,"book/")]/text()[1]
  873. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  874. categories: files
  875. timeout: 7.0
  876. disabled: true
  877. shortcut: lg
  878. about:
  879. website: https://libgen.fun/
  880. wikidata_id: Q22017206
  881. official_api_documentation:
  882. use_official_api: false
  883. require_api_key: false
  884. results: HTML
  885. - name: z-library
  886. engine: zlibrary
  887. shortcut: zlib
  888. categories: files
  889. timeout: 7.0
  890. - name: library of congress
  891. engine: loc
  892. shortcut: loc
  893. categories: images
  894. - name: lingva
  895. engine: lingva
  896. shortcut: lv
  897. # set lingva instance in url, by default it will use the official instance
  898. # url: https://lingva.ml
  899. - name: lobste.rs
  900. engine: xpath
  901. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  902. results_xpath: //li[contains(@class, "story")]
  903. url_xpath: .//a[@class="u-url"]/@href
  904. title_xpath: .//a[@class="u-url"]
  905. content_xpath: .//a[@class="domain"]
  906. categories: it
  907. shortcut: lo
  908. timeout: 5.0
  909. disabled: true
  910. about:
  911. website: https://lobste.rs/
  912. wikidata_id: Q60762874
  913. official_api_documentation:
  914. use_official_api: false
  915. require_api_key: false
  916. results: HTML
  917. - name: azlyrics
  918. shortcut: lyrics
  919. engine: xpath
  920. timeout: 4.0
  921. disabled: true
  922. categories: [music, lyrics]
  923. paging: true
  924. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  925. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  926. title_xpath: //span/b/text()
  927. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  928. about:
  929. website: https://azlyrics.com
  930. wikidata_id: Q66372542
  931. official_api_documentation:
  932. use_official_api: false
  933. require_api_key: false
  934. results: HTML
  935. - name: mastodon users
  936. engine: mastodon
  937. mastodon_type: accounts
  938. base_url: https://mastodon.social
  939. shortcut: mau
  940. - name: mastodon hashtags
  941. engine: mastodon
  942. mastodon_type: hashtags
  943. base_url: https://mastodon.social
  944. shortcut: mah
  945. # - name: matrixrooms
  946. # engine: mrs
  947. # # https://docs.searxng.org/dev/engines/online/mrs.html
  948. # # base_url: https://mrs-api-host
  949. # shortcut: mtrx
  950. # disabled: true
  951. - name: metacpan
  952. engine: metacpan
  953. shortcut: cpan
  954. disabled: true
  955. number_of_results: 20
  956. # - name: meilisearch
  957. # engine: meilisearch
  958. # shortcut: mes
  959. # enable_http: true
  960. # base_url: http://localhost:7700
  961. # index: my-index
  962. - name: mixcloud
  963. engine: mixcloud
  964. shortcut: mc
  965. # MongoDB engine
  966. # Required dependency: pymongo
  967. # - name: mymongo
  968. # engine: mongodb
  969. # shortcut: md
  970. # exact_match_only: false
  971. # host: '127.0.0.1'
  972. # port: 27017
  973. # enable_http: true
  974. # results_per_page: 20
  975. # database: 'business'
  976. # collection: 'reviews' # name of the db collection
  977. # key: 'name' # key in the collection to search for
  978. - name: mwmbl
  979. engine: mwmbl
  980. # api_url: https://api.mwmbl.org
  981. shortcut: mwm
  982. disabled: true
  983. - name: npm
  984. engine: json_engine
  985. paging: true
  986. first_page_num: 0
  987. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  988. results_query: results
  989. url_query: package/links/npm
  990. title_query: package/name
  991. content_query: package/description
  992. page_size: 25
  993. categories: [it, packages]
  994. disabled: true
  995. timeout: 5.0
  996. shortcut: npm
  997. about:
  998. website: https://npms.io/
  999. wikidata_id: Q7067518
  1000. official_api_documentation: https://api-docs.npms.io/
  1001. use_official_api: false
  1002. require_api_key: false
  1003. results: JSON
  1004. - name: nyaa
  1005. engine: nyaa
  1006. shortcut: nt
  1007. disabled: true
  1008. - name: mankier
  1009. engine: json_engine
  1010. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  1011. results_query: results
  1012. url_query: url
  1013. title_query: name
  1014. content_query: description
  1015. categories: it
  1016. shortcut: man
  1017. about:
  1018. website: https://www.mankier.com/
  1019. official_api_documentation: https://www.mankier.com/api
  1020. use_official_api: true
  1021. require_api_key: false
  1022. results: JSON
  1023. - name: odysee
  1024. engine: odysee
  1025. shortcut: od
  1026. disabled: true
  1027. - name: openairedatasets
  1028. engine: json_engine
  1029. paging: true
  1030. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  1031. results_query: response/results/result
  1032. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1033. title_query: metadata/oaf:entity/oaf:result/title/$
  1034. content_query: metadata/oaf:entity/oaf:result/description/$
  1035. content_html_to_text: true
  1036. categories: "science"
  1037. shortcut: oad
  1038. timeout: 5.0
  1039. about:
  1040. website: https://www.openaire.eu/
  1041. wikidata_id: Q25106053
  1042. official_api_documentation: https://api.openaire.eu/
  1043. use_official_api: false
  1044. require_api_key: false
  1045. results: JSON
  1046. - name: openairepublications
  1047. engine: json_engine
  1048. paging: true
  1049. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1050. results_query: response/results/result
  1051. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1052. title_query: metadata/oaf:entity/oaf:result/title/$
  1053. content_query: metadata/oaf:entity/oaf:result/description/$
  1054. content_html_to_text: true
  1055. categories: science
  1056. shortcut: oap
  1057. timeout: 5.0
  1058. about:
  1059. website: https://www.openaire.eu/
  1060. wikidata_id: Q25106053
  1061. official_api_documentation: https://api.openaire.eu/
  1062. use_official_api: false
  1063. require_api_key: false
  1064. results: JSON
  1065. # - name: opensemanticsearch
  1066. # engine: opensemantic
  1067. # shortcut: oss
  1068. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1069. - name: openstreetmap
  1070. engine: openstreetmap
  1071. shortcut: osm
  1072. - name: openrepos
  1073. engine: xpath
  1074. paging: true
  1075. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1076. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1077. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1078. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1079. categories: files
  1080. timeout: 4.0
  1081. disabled: true
  1082. shortcut: or
  1083. about:
  1084. website: https://openrepos.net/
  1085. wikidata_id:
  1086. official_api_documentation:
  1087. use_official_api: false
  1088. require_api_key: false
  1089. results: HTML
  1090. - name: packagist
  1091. engine: json_engine
  1092. paging: true
  1093. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1094. results_query: results
  1095. url_query: url
  1096. title_query: name
  1097. content_query: description
  1098. categories: [it, packages]
  1099. disabled: true
  1100. timeout: 5.0
  1101. shortcut: pack
  1102. about:
  1103. website: https://packagist.org
  1104. wikidata_id: Q108311377
  1105. official_api_documentation: https://packagist.org/apidoc
  1106. use_official_api: true
  1107. require_api_key: false
  1108. results: JSON
  1109. - name: pdbe
  1110. engine: pdbe
  1111. shortcut: pdb
  1112. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1113. # hide_obsolete: false
  1114. - name: photon
  1115. engine: photon
  1116. shortcut: ph
  1117. - name: pinterest
  1118. engine: pinterest
  1119. shortcut: pin
  1120. - name: piped
  1121. engine: piped
  1122. shortcut: ppd
  1123. categories: videos
  1124. piped_filter: videos
  1125. timeout: 3.0
  1126. # URL to use as link and for embeds
  1127. frontend_url: https://srv.piped.video
  1128. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1129. backend_url:
  1130. - https://pipedapi.kavin.rocks
  1131. - https://pipedapi-libre.kavin.rocks
  1132. - https://pipedapi.adminforge.de
  1133. - name: piped.music
  1134. engine: piped
  1135. network: piped
  1136. shortcut: ppdm
  1137. categories: music
  1138. piped_filter: music_songs
  1139. timeout: 3.0
  1140. - name: piratebay
  1141. engine: piratebay
  1142. shortcut: tpb
  1143. # You may need to change this URL to a proxy if piratebay is blocked in your
  1144. # country
  1145. url: https://thepiratebay.org/
  1146. timeout: 3.0
  1147. # Required dependency: psychopg2
  1148. # - name: postgresql
  1149. # engine: postgresql
  1150. # database: postgres
  1151. # username: postgres
  1152. # password: postgres
  1153. # limit: 10
  1154. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1155. # shortcut : psql
  1156. - name: presearch
  1157. engine: presearch
  1158. search_type: search
  1159. categories: [general, web]
  1160. shortcut: ps
  1161. disabled: true
  1162. - name: presearch images
  1163. engine: presearch
  1164. search_type: images
  1165. categories: [images, web]
  1166. timeout: 4.0
  1167. shortcut: psimg
  1168. disabled: true
  1169. - name: presearch videos
  1170. engine: presearch
  1171. search_type: videos
  1172. categories: [general, web]
  1173. timeout: 4.0
  1174. shortcut: psvid
  1175. disabled: true
  1176. - name: presearch news
  1177. engine: presearch
  1178. search_type: news
  1179. categories: [news, web]
  1180. timeout: 4.0
  1181. shortcut: psnews
  1182. disabled: true
  1183. - name: pub.dev
  1184. engine: xpath
  1185. shortcut: pd
  1186. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1187. paging: true
  1188. results_xpath: //div[contains(@class,"packages-item")]
  1189. url_xpath: ./div/h3/a/@href
  1190. title_xpath: ./div/h3/a
  1191. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1192. categories: [packages, it]
  1193. timeout: 3.0
  1194. disabled: true
  1195. first_page_num: 1
  1196. about:
  1197. website: https://pub.dev/
  1198. official_api_documentation: https://pub.dev/help/api
  1199. use_official_api: false
  1200. require_api_key: false
  1201. results: HTML
  1202. - name: pubmed
  1203. engine: pubmed
  1204. shortcut: pub
  1205. timeout: 3.0
  1206. - name: pypi
  1207. shortcut: pypi
  1208. engine: xpath
  1209. paging: true
  1210. search_url: https://pypi.org/search/?q={query}&page={pageno}
  1211. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1212. url_xpath: ./@href
  1213. title_xpath: ./h3/span[@class="package-snippet__name"]
  1214. content_xpath: ./p
  1215. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1216. first_page_num: 1
  1217. categories: [it, packages]
  1218. about:
  1219. website: https://pypi.org
  1220. wikidata_id: Q2984686
  1221. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1222. use_official_api: false
  1223. require_api_key: false
  1224. results: HTML
  1225. - name: qwant
  1226. qwant_categ: web
  1227. engine: qwant
  1228. shortcut: qw
  1229. categories: [general, web]
  1230. additional_tests:
  1231. rosebud: *test_rosebud
  1232. - name: qwant news
  1233. qwant_categ: news
  1234. engine: qwant
  1235. shortcut: qwn
  1236. categories: news
  1237. network: qwant
  1238. - name: qwant images
  1239. qwant_categ: images
  1240. engine: qwant
  1241. shortcut: qwi
  1242. categories: [images, web]
  1243. network: qwant
  1244. - name: qwant videos
  1245. qwant_categ: videos
  1246. engine: qwant
  1247. shortcut: qwv
  1248. categories: [videos, web]
  1249. network: qwant
  1250. # - name: library
  1251. # engine: recoll
  1252. # shortcut: lib
  1253. # base_url: 'https://recoll.example.org/'
  1254. # search_dir: ''
  1255. # mount_prefix: /export
  1256. # dl_prefix: 'https://download.example.org'
  1257. # timeout: 30.0
  1258. # categories: files
  1259. # disabled: true
  1260. # - name: recoll library reference
  1261. # engine: recoll
  1262. # base_url: 'https://recoll.example.org/'
  1263. # search_dir: reference
  1264. # mount_prefix: /export
  1265. # dl_prefix: 'https://download.example.org'
  1266. # shortcut: libr
  1267. # timeout: 30.0
  1268. # categories: files
  1269. # disabled: true
  1270. - name: radio browser
  1271. engine: radio_browser
  1272. shortcut: rb
  1273. - name: reddit
  1274. engine: reddit
  1275. shortcut: re
  1276. page_size: 25
  1277. # Required dependency: redis
  1278. # - name: myredis
  1279. # shortcut : rds
  1280. # engine: redis_server
  1281. # exact_match_only: false
  1282. # host: '127.0.0.1'
  1283. # port: 6379
  1284. # enable_http: true
  1285. # password: ''
  1286. # db: 0
  1287. # tmp suspended: bad certificate
  1288. # - name: scanr structures
  1289. # shortcut: scs
  1290. # engine: scanr_structures
  1291. # disabled: true
  1292. - name: sepiasearch
  1293. engine: sepiasearch
  1294. shortcut: sep
  1295. - name: soundcloud
  1296. engine: soundcloud
  1297. shortcut: sc
  1298. - name: stackoverflow
  1299. engine: stackexchange
  1300. shortcut: st
  1301. api_site: 'stackoverflow'
  1302. categories: [it, q&a]
  1303. - name: askubuntu
  1304. engine: stackexchange
  1305. shortcut: ubuntu
  1306. api_site: 'askubuntu'
  1307. categories: [it, q&a]
  1308. - name: internetarchivescholar
  1309. engine: internet_archive_scholar
  1310. shortcut: ias
  1311. timeout: 5.0
  1312. - name: superuser
  1313. engine: stackexchange
  1314. shortcut: su
  1315. api_site: 'superuser'
  1316. categories: [it, q&a]
  1317. - name: searchcode code
  1318. engine: searchcode_code
  1319. shortcut: scc
  1320. disabled: true
  1321. - name: framalibre
  1322. engine: framalibre
  1323. shortcut: frl
  1324. disabled: true
  1325. # - name: searx
  1326. # engine: searx_engine
  1327. # shortcut: se
  1328. # instance_urls :
  1329. # - http://127.0.0.1:8888/
  1330. # - ...
  1331. # disabled: true
  1332. - name: semantic scholar
  1333. engine: semantic_scholar
  1334. disabled: true
  1335. shortcut: se
  1336. # Spotify needs API credentials
  1337. # - name: spotify
  1338. # engine: spotify
  1339. # shortcut: stf
  1340. # api_client_id: *******
  1341. # api_client_secret: *******
  1342. # - name: solr
  1343. # engine: solr
  1344. # shortcut: slr
  1345. # base_url: http://localhost:8983
  1346. # collection: collection_name
  1347. # sort: '' # sorting: asc or desc
  1348. # field_list: '' # comma separated list of field names to display on the UI
  1349. # default_fields: '' # default field to query
  1350. # query_fields: '' # query fields
  1351. # enable_http: true
  1352. # - name: springer nature
  1353. # engine: springer
  1354. # # get your API key from: https://dev.springernature.com/signup
  1355. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1356. # api_key: 'unset'
  1357. # shortcut: springer
  1358. # timeout: 15.0
  1359. - name: startpage
  1360. engine: startpage
  1361. shortcut: sp
  1362. timeout: 6.0
  1363. disabled: true
  1364. additional_tests:
  1365. rosebud: *test_rosebud
  1366. - name: tokyotoshokan
  1367. engine: tokyotoshokan
  1368. shortcut: tt
  1369. timeout: 6.0
  1370. disabled: true
  1371. - name: solidtorrents
  1372. engine: solidtorrents
  1373. shortcut: solid
  1374. timeout: 4.0
  1375. base_url:
  1376. - https://solidtorrents.to
  1377. - https://bitsearch.to
  1378. # For this demo of the sqlite engine download:
  1379. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1380. # and unpack into searx/data/filmliste-v2.db
  1381. # Query to test: "!demo concert"
  1382. #
  1383. # - name: demo
  1384. # engine: sqlite
  1385. # shortcut: demo
  1386. # categories: general
  1387. # result_template: default.html
  1388. # database: searx/data/filmliste-v2.db
  1389. # query_str: >-
  1390. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1391. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1392. # description AS content
  1393. # FROM film
  1394. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1395. # ORDER BY duration DESC
  1396. - name: tagesschau
  1397. engine: tagesschau
  1398. # when set to false, display URLs from Tagesschau, and not the actual source
  1399. # (e.g. NDR, WDR, SWR, HR, ...)
  1400. use_source_url: true
  1401. shortcut: ts
  1402. disabled: true
  1403. - name: tmdb
  1404. engine: xpath
  1405. paging: true
  1406. categories: movies
  1407. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1408. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1409. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1410. thumbnail_xpath: .//img/@src
  1411. title_xpath: .//div[contains(@class,"title")]//h2
  1412. content_xpath: .//div[contains(@class,"overview")]
  1413. shortcut: tm
  1414. disabled: true
  1415. # Requires Tor
  1416. - name: torch
  1417. engine: xpath
  1418. paging: true
  1419. search_url:
  1420. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1421. results_xpath: //table//tr
  1422. url_xpath: ./td[2]/a
  1423. title_xpath: ./td[2]/b
  1424. content_xpath: ./td[2]/small
  1425. categories: onions
  1426. enable_http: true
  1427. shortcut: tch
  1428. # torznab engine lets you query any torznab compatible indexer. Using this
  1429. # engine in combination with Jackett opens the possibility to query a lot of
  1430. # public and private indexers directly from SearXNG. More details at:
  1431. # https://docs.searxng.org/dev/engines/online/torznab.html
  1432. #
  1433. # - name: Torznab EZTV
  1434. # engine: torznab
  1435. # shortcut: eztv
  1436. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1437. # enable_http: true # if using localhost
  1438. # api_key: xxxxxxxxxxxxxxx
  1439. # show_magnet_links: true
  1440. # show_torrent_files: false
  1441. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1442. # torznab_categories: # optional
  1443. # - 2000
  1444. # - 5000
  1445. # tmp suspended - too slow, too many errors
  1446. # - name: urbandictionary
  1447. # engine : xpath
  1448. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1449. # url_xpath : //*[@class="word"]/@href
  1450. # title_xpath : //*[@class="def-header"]
  1451. # content_xpath: //*[@class="meaning"]
  1452. # shortcut: ud
  1453. - name: unsplash
  1454. engine: unsplash
  1455. shortcut: us
  1456. - name: yahoo
  1457. engine: yahoo
  1458. shortcut: yh
  1459. disabled: true
  1460. - name: yahoo news
  1461. engine: yahoo_news
  1462. shortcut: yhn
  1463. - name: youtube
  1464. shortcut: yt
  1465. # You can use the engine using the official stable API, but you need an API
  1466. # key See: https://console.developers.google.com/project
  1467. #
  1468. # engine: youtube_api
  1469. # api_key: 'apikey' # required!
  1470. #
  1471. # Or you can use the html non-stable engine, activated by default
  1472. engine: youtube_noapi
  1473. - name: dailymotion
  1474. engine: dailymotion
  1475. shortcut: dm
  1476. - name: vimeo
  1477. engine: vimeo
  1478. shortcut: vm
  1479. - name: wiby
  1480. engine: json_engine
  1481. paging: true
  1482. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1483. url_query: URL
  1484. title_query: Title
  1485. content_query: Snippet
  1486. categories: [general, web]
  1487. shortcut: wib
  1488. disabled: true
  1489. about:
  1490. website: https://wiby.me/
  1491. - name: alexandria
  1492. engine: json_engine
  1493. shortcut: alx
  1494. categories: general
  1495. paging: true
  1496. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1497. results_query: results
  1498. title_query: title
  1499. url_query: url
  1500. content_query: snippet
  1501. timeout: 1.5
  1502. disabled: true
  1503. about:
  1504. website: https://alexandria.org/
  1505. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1506. use_official_api: true
  1507. require_api_key: false
  1508. results: JSON
  1509. - name: wikibooks
  1510. engine: mediawiki
  1511. weight: 0.5
  1512. shortcut: wb
  1513. categories: [general, wikimedia]
  1514. base_url: "https://{language}.wikibooks.org/"
  1515. search_type: text
  1516. disabled: true
  1517. about:
  1518. website: https://www.wikibooks.org/
  1519. wikidata_id: Q367
  1520. - name: wikinews
  1521. engine: mediawiki
  1522. shortcut: wn
  1523. categories: [news, wikimedia]
  1524. base_url: "https://{language}.wikinews.org/"
  1525. search_type: text
  1526. srsort: create_timestamp_desc
  1527. about:
  1528. website: https://www.wikinews.org/
  1529. wikidata_id: Q964
  1530. - name: wikiquote
  1531. engine: mediawiki
  1532. weight: 0.5
  1533. shortcut: wq
  1534. categories: [general, wikimedia]
  1535. base_url: "https://{language}.wikiquote.org/"
  1536. search_type: text
  1537. disabled: true
  1538. additional_tests:
  1539. rosebud: *test_rosebud
  1540. about:
  1541. website: https://www.wikiquote.org/
  1542. wikidata_id: Q369
  1543. - name: wikisource
  1544. engine: mediawiki
  1545. weight: 0.5
  1546. shortcut: ws
  1547. categories: [general, wikimedia]
  1548. base_url: "https://{language}.wikisource.org/"
  1549. search_type: text
  1550. disabled: true
  1551. about:
  1552. website: https://www.wikisource.org/
  1553. wikidata_id: Q263
  1554. - name: wikispecies
  1555. engine: mediawiki
  1556. shortcut: wsp
  1557. categories: [general, science, wikimedia]
  1558. base_url: "https://species.wikimedia.org/"
  1559. search_type: text
  1560. disabled: true
  1561. about:
  1562. website: https://species.wikimedia.org/
  1563. wikidata_id: Q13679
  1564. - name: wiktionary
  1565. engine: mediawiki
  1566. shortcut: wt
  1567. categories: [dictionaries, wikimedia]
  1568. base_url: "https://{language}.wiktionary.org/"
  1569. search_type: text
  1570. about:
  1571. website: https://www.wiktionary.org/
  1572. wikidata_id: Q151
  1573. - name: wikiversity
  1574. engine: mediawiki
  1575. weight: 0.5
  1576. shortcut: wv
  1577. categories: [general, wikimedia]
  1578. base_url: "https://{language}.wikiversity.org/"
  1579. search_type: text
  1580. disabled: true
  1581. about:
  1582. website: https://www.wikiversity.org/
  1583. wikidata_id: Q370
  1584. - name: wikivoyage
  1585. engine: mediawiki
  1586. weight: 0.5
  1587. shortcut: wy
  1588. categories: [general, wikimedia]
  1589. base_url: "https://{language}.wikivoyage.org/"
  1590. search_type: text
  1591. disabled: true
  1592. about:
  1593. website: https://www.wikivoyage.org/
  1594. wikidata_id: Q373
  1595. - name: wikicommons.images
  1596. engine: wikicommons
  1597. shortcut: wc
  1598. categories: images
  1599. number_of_results: 10
  1600. - name: wolframalpha
  1601. shortcut: wa
  1602. # You can use the engine using the official stable API, but you need an API
  1603. # key. See: https://products.wolframalpha.com/api/
  1604. #
  1605. # engine: wolframalpha_api
  1606. # api_key: ''
  1607. #
  1608. # Or you can use the html non-stable engine, activated by default
  1609. engine: wolframalpha_noapi
  1610. timeout: 6.0
  1611. categories: general
  1612. disabled: true
  1613. - name: dictzone
  1614. engine: dictzone
  1615. shortcut: dc
  1616. - name: mymemory translated
  1617. engine: translated
  1618. shortcut: tl
  1619. timeout: 5.0
  1620. # You can use without an API key, but you are limited to 1000 words/day
  1621. # See: https://mymemory.translated.net/doc/usagelimits.php
  1622. # api_key: ''
  1623. # Required dependency: mysql-connector-python
  1624. # - name: mysql
  1625. # engine: mysql_server
  1626. # database: mydatabase
  1627. # username: user
  1628. # password: pass
  1629. # limit: 10
  1630. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1631. # shortcut: mysql
  1632. - name: 1337x
  1633. engine: 1337x
  1634. shortcut: 1337x
  1635. disabled: true
  1636. - name: duden
  1637. engine: duden
  1638. shortcut: du
  1639. disabled: true
  1640. - name: seznam
  1641. shortcut: szn
  1642. engine: seznam
  1643. disabled: true
  1644. # - name: deepl
  1645. # engine: deepl
  1646. # shortcut: dpl
  1647. # # You can use the engine using the official stable API, but you need an API key
  1648. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1649. # api_key: '' # required!
  1650. # timeout: 5.0
  1651. # disabled: true
  1652. - name: mojeek
  1653. shortcut: mjk
  1654. engine: xpath
  1655. paging: true
  1656. categories: [general, web]
  1657. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1658. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1659. url_xpath: ./@href
  1660. title_xpath: ../h2/a
  1661. content_xpath: ..//p[@class="s"]
  1662. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1663. first_page_num: 0
  1664. page_size: 10
  1665. disabled: true
  1666. about:
  1667. website: https://www.mojeek.com/
  1668. wikidata_id: Q60747299
  1669. official_api_documentation: https://www.mojeek.com/services/api.html/
  1670. use_official_api: false
  1671. require_api_key: false
  1672. results: HTML
  1673. - name: moviepilot
  1674. engine: moviepilot
  1675. shortcut: mp
  1676. disabled: true
  1677. - name: naver
  1678. shortcut: nvr
  1679. categories: [general, web]
  1680. engine: xpath
  1681. paging: true
  1682. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1683. url_xpath: //a[@class="link_tit"]/@href
  1684. title_xpath: //a[@class="link_tit"]
  1685. content_xpath: //a[@class="total_dsc"]/div
  1686. first_page_num: 1
  1687. page_size: 10
  1688. disabled: true
  1689. about:
  1690. website: https://www.naver.com/
  1691. wikidata_id: Q485639
  1692. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1693. use_official_api: false
  1694. require_api_key: false
  1695. results: HTML
  1696. language: ko
  1697. - name: rubygems
  1698. shortcut: rbg
  1699. engine: xpath
  1700. paging: true
  1701. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1702. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1703. url_xpath: ./@href
  1704. title_xpath: ./span/h2
  1705. content_xpath: ./span/p
  1706. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1707. first_page_num: 1
  1708. categories: [it, packages]
  1709. disabled: true
  1710. about:
  1711. website: https://rubygems.org/
  1712. wikidata_id: Q1853420
  1713. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1714. use_official_api: false
  1715. require_api_key: false
  1716. results: HTML
  1717. - name: peertube
  1718. engine: peertube
  1719. shortcut: ptb
  1720. paging: true
  1721. # alternatives see: https://instances.joinpeertube.org/instances
  1722. # base_url: https://tube.4aem.com
  1723. categories: videos
  1724. disabled: true
  1725. timeout: 6.0
  1726. - name: mediathekviewweb
  1727. engine: mediathekviewweb
  1728. shortcut: mvw
  1729. disabled: true
  1730. - name: yacy
  1731. engine: yacy
  1732. categories: general
  1733. search_type: text
  1734. base_url: https://yacy.searchlab.eu
  1735. shortcut: ya
  1736. disabled: true
  1737. # required if you aren't using HTTPS for your local yacy instance
  1738. # https://docs.searxng.org/dev/engines/online/yacy.html
  1739. # enable_http: true
  1740. # timeout: 3.0
  1741. # search_mode: 'global'
  1742. - name: yacy images
  1743. engine: yacy
  1744. categories: images
  1745. search_type: image
  1746. base_url: https://yacy.searchlab.eu
  1747. shortcut: yai
  1748. disabled: true
  1749. - name: rumble
  1750. engine: rumble
  1751. shortcut: ru
  1752. base_url: https://rumble.com/
  1753. paging: true
  1754. categories: videos
  1755. disabled: true
  1756. - name: wordnik
  1757. engine: wordnik
  1758. shortcut: def
  1759. base_url: https://www.wordnik.com/
  1760. categories: [dictionaries]
  1761. timeout: 5.0
  1762. - name: woxikon.de synonyme
  1763. engine: xpath
  1764. shortcut: woxi
  1765. categories: [dictionaries]
  1766. timeout: 5.0
  1767. disabled: true
  1768. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1769. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1770. content_xpath: //div[@class="synonyms-list-group"]
  1771. title_xpath: //div[@class="upper-synonyms"]/a
  1772. no_result_for_http_status: [404]
  1773. about:
  1774. website: https://www.woxikon.de/
  1775. wikidata_id: # No Wikidata ID
  1776. use_official_api: false
  1777. require_api_key: false
  1778. results: HTML
  1779. language: de
  1780. - name: seekr news
  1781. engine: seekr
  1782. shortcut: senews
  1783. categories: news
  1784. seekr_category: news
  1785. disabled: true
  1786. - name: seekr images
  1787. engine: seekr
  1788. network: seekr news
  1789. shortcut: seimg
  1790. categories: images
  1791. seekr_category: images
  1792. disabled: true
  1793. - name: seekr videos
  1794. engine: seekr
  1795. network: seekr news
  1796. shortcut: sevid
  1797. categories: videos
  1798. seekr_category: videos
  1799. disabled: true
  1800. - name: sjp.pwn
  1801. engine: sjp
  1802. shortcut: sjp
  1803. base_url: https://sjp.pwn.pl/
  1804. timeout: 5.0
  1805. disabled: true
  1806. - name: svgrepo
  1807. engine: svgrepo
  1808. shortcut: svg
  1809. timeout: 10.0
  1810. disabled: true
  1811. - name: tootfinder
  1812. engine: json_engine
  1813. categories: ['social media']
  1814. paging: false
  1815. search_url: https://www.tootfinder.ch/rest/api/search/{query}
  1816. url_query: uri
  1817. title_query: card/title
  1818. content_query: content
  1819. thumbnail_query: card/image
  1820. shortcut: toot
  1821. about:
  1822. website: https://tootfinder.ch/
  1823. official_api_documentation: https://wiki.tootfinder.ch/index.php?name=the-tootfinder-rest-api
  1824. use_official_api: true
  1825. require_api_key: false
  1826. results: 'JSON'
  1827. - name: wallhaven
  1828. engine: wallhaven
  1829. # api_key: abcdefghijklmnopqrstuvwxyz
  1830. shortcut: wh
  1831. # wikimini: online encyclopedia for children
  1832. # The fulltext and title parameter is necessary for Wikimini because
  1833. # sometimes it will not show the results and redirect instead
  1834. - name: wikimini
  1835. engine: xpath
  1836. shortcut: wkmn
  1837. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1838. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1839. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1840. content_xpath: //li/div[@class="searchresult"]
  1841. categories: general
  1842. disabled: true
  1843. about:
  1844. website: https://wikimini.org/
  1845. wikidata_id: Q3568032
  1846. use_official_api: false
  1847. require_api_key: false
  1848. results: HTML
  1849. language: fr
  1850. - name: wttr.in
  1851. engine: wttr
  1852. shortcut: wttr
  1853. timeout: 9.0
  1854. - name: yummly
  1855. engine: yummly
  1856. shortcut: yum
  1857. disabled: true
  1858. - name: brave
  1859. engine: brave
  1860. shortcut: br
  1861. time_range_support: true
  1862. paging: true
  1863. categories: [general, web]
  1864. brave_category: search
  1865. # brave_spellcheck: true
  1866. - name: brave.images
  1867. engine: brave
  1868. network: brave
  1869. shortcut: brimg
  1870. categories: [images, web]
  1871. brave_category: images
  1872. - name: brave.videos
  1873. engine: brave
  1874. network: brave
  1875. shortcut: brvid
  1876. categories: [videos, web]
  1877. brave_category: videos
  1878. - name: brave.news
  1879. engine: brave
  1880. network: brave
  1881. shortcut: brnews
  1882. categories: news
  1883. brave_category: news
  1884. - name: lib.rs
  1885. shortcut: lrs
  1886. engine: xpath
  1887. search_url: https://lib.rs/search?q={query}
  1888. results_xpath: /html/body/main/div/ol/li/a
  1889. url_xpath: ./@href
  1890. title_xpath: ./div[@class="h"]/h4
  1891. content_xpath: ./div[@class="h"]/p
  1892. categories: [it, packages]
  1893. disabled: true
  1894. about:
  1895. website: https://lib.rs
  1896. wikidata_id: Q113486010
  1897. use_official_api: false
  1898. require_api_key: false
  1899. results: HTML
  1900. - name: sourcehut
  1901. shortcut: srht
  1902. engine: xpath
  1903. paging: true
  1904. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1905. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1906. url_xpath: ./h4/a[2]/@href
  1907. title_xpath: ./h4/a[2]
  1908. content_xpath: ./p
  1909. first_page_num: 1
  1910. categories: [it, repos]
  1911. disabled: true
  1912. about:
  1913. website: https://sr.ht
  1914. wikidata_id: Q78514485
  1915. official_api_documentation: https://man.sr.ht/
  1916. use_official_api: false
  1917. require_api_key: false
  1918. results: HTML
  1919. - name: goo
  1920. shortcut: goo
  1921. engine: xpath
  1922. paging: true
  1923. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1924. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1925. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1926. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1927. first_page_num: 0
  1928. categories: [general, web]
  1929. disabled: true
  1930. timeout: 4.0
  1931. about:
  1932. website: https://search.goo.ne.jp
  1933. wikidata_id: Q249044
  1934. use_official_api: false
  1935. require_api_key: false
  1936. results: HTML
  1937. language: ja
  1938. - name: bt4g
  1939. engine: bt4g
  1940. shortcut: bt4g
  1941. - name: pkg.go.dev
  1942. engine: xpath
  1943. shortcut: pgo
  1944. search_url: https://pkg.go.dev/search?limit=100&m=package&q={query}
  1945. results_xpath: /html/body/main/div[contains(@class,"SearchResults")]/div[not(@class)]/div[@class="SearchSnippet"]
  1946. url_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a/@href
  1947. title_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a
  1948. content_xpath: ./p[@class="SearchSnippet-synopsis"]
  1949. categories: [packages, it]
  1950. timeout: 3.0
  1951. disabled: true
  1952. about:
  1953. website: https://pkg.go.dev/
  1954. use_official_api: false
  1955. require_api_key: false
  1956. results: HTML
  1957. # Doku engine lets you access to any Doku wiki instance:
  1958. # A public one or a privete/corporate one.
  1959. # - name: ubuntuwiki
  1960. # engine: doku
  1961. # shortcut: uw
  1962. # base_url: 'https://doc.ubuntu-fr.org'
  1963. # Be careful when enabling this engine if you are
  1964. # running a public instance. Do not expose any sensitive
  1965. # information. You can restrict access by configuring a list
  1966. # of access tokens under tokens.
  1967. # - name: git grep
  1968. # engine: command
  1969. # command: ['git', 'grep', '{{QUERY}}']
  1970. # shortcut: gg
  1971. # tokens: []
  1972. # disabled: true
  1973. # delimiter:
  1974. # chars: ':'
  1975. # keys: ['filepath', 'code']
  1976. # Be careful when enabling this engine if you are
  1977. # running a public instance. Do not expose any sensitive
  1978. # information. You can restrict access by configuring a list
  1979. # of access tokens under tokens.
  1980. # - name: locate
  1981. # engine: command
  1982. # command: ['locate', '{{QUERY}}']
  1983. # shortcut: loc
  1984. # tokens: []
  1985. # disabled: true
  1986. # delimiter:
  1987. # chars: ' '
  1988. # keys: ['line']
  1989. # Be careful when enabling this engine if you are
  1990. # running a public instance. Do not expose any sensitive
  1991. # information. You can restrict access by configuring a list
  1992. # of access tokens under tokens.
  1993. # - name: find
  1994. # engine: command
  1995. # command: ['find', '.', '-name', '{{QUERY}}']
  1996. # query_type: path
  1997. # shortcut: fnd
  1998. # tokens: []
  1999. # disabled: true
  2000. # delimiter:
  2001. # chars: ' '
  2002. # keys: ['line']
  2003. # Be careful when enabling this engine if you are
  2004. # running a public instance. Do not expose any sensitive
  2005. # information. You can restrict access by configuring a list
  2006. # of access tokens under tokens.
  2007. # - name: pattern search in files
  2008. # engine: command
  2009. # command: ['fgrep', '{{QUERY}}']
  2010. # shortcut: fgr
  2011. # tokens: []
  2012. # disabled: true
  2013. # delimiter:
  2014. # chars: ' '
  2015. # keys: ['line']
  2016. # Be careful when enabling this engine if you are
  2017. # running a public instance. Do not expose any sensitive
  2018. # information. You can restrict access by configuring a list
  2019. # of access tokens under tokens.
  2020. # - name: regex search in files
  2021. # engine: command
  2022. # command: ['grep', '{{QUERY}}']
  2023. # shortcut: gr
  2024. # tokens: []
  2025. # disabled: true
  2026. # delimiter:
  2027. # chars: ' '
  2028. # keys: ['line']
  2029. doi_resolvers:
  2030. oadoi.org: 'https://oadoi.org/'
  2031. doi.org: 'https://doi.org/'
  2032. doai.io: 'https://dissem.in/'
  2033. sci-hub.se: 'https://sci-hub.se/'
  2034. sci-hub.st: 'https://sci-hub.st/'
  2035. sci-hub.ru: 'https://sci-hub.ru/'
  2036. default_doi_resolver: 'oadoi.org'