settings.yml 60 KB

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