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