settings.yml 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  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: fyyd
  656. engine: fyyd
  657. shortcut: fy
  658. timeout: 8.0
  659. disabled: true
  660. - name: genius
  661. engine: genius
  662. shortcut: gen
  663. - name: gentoo
  664. engine: gentoo
  665. shortcut: ge
  666. timeout: 10.0
  667. - name: gitlab
  668. engine: json_engine
  669. paging: true
  670. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  671. url_query: web_url
  672. title_query: name_with_namespace
  673. content_query: description
  674. page_size: 20
  675. categories: [it, repos]
  676. shortcut: gl
  677. timeout: 10.0
  678. disabled: true
  679. about:
  680. website: https://about.gitlab.com/
  681. wikidata_id: Q16639197
  682. official_api_documentation: https://docs.gitlab.com/ee/api/
  683. use_official_api: false
  684. require_api_key: false
  685. results: JSON
  686. - name: github
  687. engine: github
  688. shortcut: gh
  689. # This a Gitea service. If you would like to use a different instance,
  690. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  691. # new engine by copying this and changing the name, shortcut and search_url.
  692. - name: codeberg
  693. engine: json_engine
  694. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  695. url_query: html_url
  696. title_query: name
  697. content_query: description
  698. categories: [it, repos]
  699. shortcut: cb
  700. disabled: true
  701. about:
  702. website: https://codeberg.org/
  703. wikidata_id:
  704. official_api_documentation: https://try.gitea.io/api/swagger
  705. use_official_api: false
  706. require_api_key: false
  707. results: JSON
  708. - name: google
  709. engine: google
  710. shortcut: go
  711. # additional_tests:
  712. # android: *test_android
  713. - name: google images
  714. engine: google_images
  715. shortcut: goi
  716. # additional_tests:
  717. # android: *test_android
  718. # dali:
  719. # matrix:
  720. # query: ['Dali Christ']
  721. # lang: ['en', 'de', 'fr', 'zh-CN']
  722. # result_container:
  723. # - ['one_title_contains', 'Salvador']
  724. - name: google news
  725. engine: google_news
  726. shortcut: gon
  727. # additional_tests:
  728. # android: *test_android
  729. - name: google videos
  730. engine: google_videos
  731. shortcut: gov
  732. # additional_tests:
  733. # android: *test_android
  734. - name: google scholar
  735. engine: google_scholar
  736. shortcut: gos
  737. - name: google play apps
  738. engine: google_play
  739. categories: [files, apps]
  740. shortcut: gpa
  741. play_categ: apps
  742. disabled: true
  743. - name: google play movies
  744. engine: google_play
  745. categories: videos
  746. shortcut: gpm
  747. play_categ: movies
  748. disabled: true
  749. - name: material icons
  750. engine: material_icons
  751. categories: images
  752. shortcut: mi
  753. disabled: true
  754. - name: gpodder
  755. engine: json_engine
  756. shortcut: gpod
  757. timeout: 4.0
  758. paging: false
  759. search_url: https://gpodder.net/search.json?q={query}
  760. url_query: url
  761. title_query: title
  762. content_query: description
  763. page_size: 19
  764. categories: music
  765. disabled: true
  766. about:
  767. website: https://gpodder.net
  768. wikidata_id: Q3093354
  769. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  770. use_official_api: false
  771. requires_api_key: false
  772. results: JSON
  773. - name: habrahabr
  774. engine: xpath
  775. paging: true
  776. search_url: https://habr.com/en/search/page{pageno}/?q={query}
  777. results_xpath: //article[contains(@class, "tm-articles-list__item")]
  778. url_xpath: .//a[@class="tm-title__link"]/@href
  779. title_xpath: .//a[@class="tm-title__link"]
  780. content_xpath: .//div[contains(@class, "article-formatted-body")]
  781. categories: it
  782. timeout: 4.0
  783. disabled: true
  784. shortcut: habr
  785. about:
  786. website: https://habr.com/
  787. wikidata_id: Q4494434
  788. official_api_documentation: https://habr.com/en/docs/help/api/
  789. use_official_api: false
  790. require_api_key: false
  791. results: HTML
  792. - name: hackernews
  793. engine: hackernews
  794. shortcut: hn
  795. disabled: true
  796. - name: hoogle
  797. engine: xpath
  798. paging: true
  799. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  800. results_xpath: '//div[@class="result"]'
  801. title_xpath: './/div[@class="ans"]//a'
  802. url_xpath: './/div[@class="ans"]//a/@href'
  803. content_xpath: './/div[@class="from"]'
  804. page_size: 20
  805. categories: [it, packages]
  806. shortcut: ho
  807. about:
  808. website: https://hoogle.haskell.org/
  809. wikidata_id: Q34010
  810. official_api_documentation: https://hackage.haskell.org/api
  811. use_official_api: false
  812. require_api_key: false
  813. results: JSON
  814. - name: imdb
  815. engine: imdb
  816. shortcut: imdb
  817. timeout: 6.0
  818. disabled: true
  819. - name: imgur
  820. engine: imgur
  821. shortcut: img
  822. disabled: true
  823. - name: ina
  824. engine: ina
  825. shortcut: in
  826. timeout: 6.0
  827. disabled: true
  828. - name: invidious
  829. engine: invidious
  830. # Instanes will be selected randomly, see https://api.invidious.io/ for
  831. # instances that are stable (good uptime) and close to you.
  832. base_url:
  833. - https://invidious.io.lol
  834. - https://invidious.fdn.fr
  835. - https://yt.artemislena.eu
  836. - https://invidious.tiekoetter.com
  837. - https://invidious.flokinet.to
  838. - https://vid.puffyan.us
  839. - https://invidious.privacydev.net
  840. - https://inv.tux.pizza
  841. shortcut: iv
  842. timeout: 3.0
  843. disabled: true
  844. - name: jisho
  845. engine: jisho
  846. shortcut: js
  847. timeout: 3.0
  848. disabled: true
  849. - name: kickass
  850. engine: kickass
  851. base_url:
  852. - https://kickasstorrents.to
  853. - https://kickasstorrents.cr
  854. - https://kickasstorrent.cr
  855. - https://kickass.sx
  856. - https://kat.am
  857. shortcut: kc
  858. timeout: 4.0
  859. - name: lemmy communities
  860. engine: lemmy
  861. lemmy_type: Communities
  862. shortcut: leco
  863. - name: lemmy users
  864. engine: lemmy
  865. network: lemmy communities
  866. lemmy_type: Users
  867. shortcut: leus
  868. - name: lemmy posts
  869. engine: lemmy
  870. network: lemmy communities
  871. lemmy_type: Posts
  872. shortcut: lepo
  873. - name: lemmy comments
  874. engine: lemmy
  875. network: lemmy communities
  876. lemmy_type: Comments
  877. shortcut: lecom
  878. - name: library genesis
  879. engine: xpath
  880. search_url: https://libgen.fun/search.php?req={query}
  881. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  882. title_xpath: //a[contains(@href,"book/")]/text()[1]
  883. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  884. categories: files
  885. timeout: 7.0
  886. disabled: true
  887. shortcut: lg
  888. about:
  889. website: https://libgen.fun/
  890. wikidata_id: Q22017206
  891. official_api_documentation:
  892. use_official_api: false
  893. require_api_key: false
  894. results: HTML
  895. - name: z-library
  896. engine: zlibrary
  897. shortcut: zlib
  898. categories: files
  899. timeout: 7.0
  900. - name: library of congress
  901. engine: loc
  902. shortcut: loc
  903. categories: images
  904. - name: lingva
  905. engine: lingva
  906. shortcut: lv
  907. # set lingva instance in url, by default it will use the official instance
  908. # url: https://lingva.ml
  909. - name: lobste.rs
  910. engine: xpath
  911. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  912. results_xpath: //li[contains(@class, "story")]
  913. url_xpath: .//a[@class="u-url"]/@href
  914. title_xpath: .//a[@class="u-url"]
  915. content_xpath: .//a[@class="domain"]
  916. categories: it
  917. shortcut: lo
  918. timeout: 5.0
  919. disabled: true
  920. about:
  921. website: https://lobste.rs/
  922. wikidata_id: Q60762874
  923. official_api_documentation:
  924. use_official_api: false
  925. require_api_key: false
  926. results: HTML
  927. - name: azlyrics
  928. shortcut: lyrics
  929. engine: xpath
  930. timeout: 4.0
  931. disabled: true
  932. categories: [music, lyrics]
  933. paging: true
  934. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  935. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  936. title_xpath: //span/b/text()
  937. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  938. about:
  939. website: https://azlyrics.com
  940. wikidata_id: Q66372542
  941. official_api_documentation:
  942. use_official_api: false
  943. require_api_key: false
  944. results: HTML
  945. - name: mastodon users
  946. engine: mastodon
  947. mastodon_type: accounts
  948. base_url: https://mastodon.social
  949. shortcut: mau
  950. - name: mastodon hashtags
  951. engine: mastodon
  952. mastodon_type: hashtags
  953. base_url: https://mastodon.social
  954. shortcut: mah
  955. # - name: matrixrooms
  956. # engine: mrs
  957. # # https://docs.searxng.org/dev/engines/online/mrs.html
  958. # # base_url: https://mrs-api-host
  959. # shortcut: mtrx
  960. # disabled: true
  961. - name: mdn
  962. shortcut: mdn
  963. engine: json_engine
  964. categories: [it]
  965. paging: true
  966. search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
  967. results_query: documents
  968. url_query: mdn_url
  969. url_prefix: https://developer.mozilla.org
  970. title_query: title
  971. content_query: summary
  972. about:
  973. website: https://developer.mozilla.org
  974. wikidata_id: Q3273508
  975. official_api_documentation: null
  976. use_official_api: false
  977. require_api_key: false
  978. results: JSON
  979. - name: metacpan
  980. engine: metacpan
  981. shortcut: cpan
  982. disabled: true
  983. number_of_results: 20
  984. # - name: meilisearch
  985. # engine: meilisearch
  986. # shortcut: mes
  987. # enable_http: true
  988. # base_url: http://localhost:7700
  989. # index: my-index
  990. - name: mixcloud
  991. engine: mixcloud
  992. shortcut: mc
  993. # MongoDB engine
  994. # Required dependency: pymongo
  995. # - name: mymongo
  996. # engine: mongodb
  997. # shortcut: md
  998. # exact_match_only: false
  999. # host: '127.0.0.1'
  1000. # port: 27017
  1001. # enable_http: true
  1002. # results_per_page: 20
  1003. # database: 'business'
  1004. # collection: 'reviews' # name of the db collection
  1005. # key: 'name' # key in the collection to search for
  1006. - name: mwmbl
  1007. engine: mwmbl
  1008. # api_url: https://api.mwmbl.org
  1009. shortcut: mwm
  1010. disabled: true
  1011. - name: npm
  1012. engine: json_engine
  1013. paging: true
  1014. first_page_num: 0
  1015. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  1016. results_query: results
  1017. url_query: package/links/npm
  1018. title_query: package/name
  1019. content_query: package/description
  1020. page_size: 25
  1021. categories: [it, packages]
  1022. disabled: true
  1023. timeout: 5.0
  1024. shortcut: npm
  1025. about:
  1026. website: https://npms.io/
  1027. wikidata_id: Q7067518
  1028. official_api_documentation: https://api-docs.npms.io/
  1029. use_official_api: false
  1030. require_api_key: false
  1031. results: JSON
  1032. - name: nyaa
  1033. engine: nyaa
  1034. shortcut: nt
  1035. disabled: true
  1036. - name: mankier
  1037. engine: json_engine
  1038. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  1039. results_query: results
  1040. url_query: url
  1041. title_query: name
  1042. content_query: description
  1043. categories: it
  1044. shortcut: man
  1045. about:
  1046. website: https://www.mankier.com/
  1047. official_api_documentation: https://www.mankier.com/api
  1048. use_official_api: true
  1049. require_api_key: false
  1050. results: JSON
  1051. - name: odysee
  1052. engine: odysee
  1053. shortcut: od
  1054. disabled: true
  1055. - name: openairedatasets
  1056. engine: json_engine
  1057. paging: true
  1058. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  1059. results_query: response/results/result
  1060. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1061. title_query: metadata/oaf:entity/oaf:result/title/$
  1062. content_query: metadata/oaf:entity/oaf:result/description/$
  1063. content_html_to_text: true
  1064. categories: "science"
  1065. shortcut: oad
  1066. timeout: 5.0
  1067. about:
  1068. website: https://www.openaire.eu/
  1069. wikidata_id: Q25106053
  1070. official_api_documentation: https://api.openaire.eu/
  1071. use_official_api: false
  1072. require_api_key: false
  1073. results: JSON
  1074. - name: openairepublications
  1075. engine: json_engine
  1076. paging: true
  1077. search_url: https://api.openaire.eu/search/publications?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: oap
  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: opensemanticsearch
  1094. # engine: opensemantic
  1095. # shortcut: oss
  1096. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1097. - name: openstreetmap
  1098. engine: openstreetmap
  1099. shortcut: osm
  1100. - name: openrepos
  1101. engine: xpath
  1102. paging: true
  1103. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1104. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1105. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1106. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1107. categories: files
  1108. timeout: 4.0
  1109. disabled: true
  1110. shortcut: or
  1111. about:
  1112. website: https://openrepos.net/
  1113. wikidata_id:
  1114. official_api_documentation:
  1115. use_official_api: false
  1116. require_api_key: false
  1117. results: HTML
  1118. - name: packagist
  1119. engine: json_engine
  1120. paging: true
  1121. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1122. results_query: results
  1123. url_query: url
  1124. title_query: name
  1125. content_query: description
  1126. categories: [it, packages]
  1127. disabled: true
  1128. timeout: 5.0
  1129. shortcut: pack
  1130. about:
  1131. website: https://packagist.org
  1132. wikidata_id: Q108311377
  1133. official_api_documentation: https://packagist.org/apidoc
  1134. use_official_api: true
  1135. require_api_key: false
  1136. results: JSON
  1137. - name: pdbe
  1138. engine: pdbe
  1139. shortcut: pdb
  1140. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1141. # hide_obsolete: false
  1142. - name: photon
  1143. engine: photon
  1144. shortcut: ph
  1145. - name: pinterest
  1146. engine: pinterest
  1147. shortcut: pin
  1148. - name: piped
  1149. engine: piped
  1150. shortcut: ppd
  1151. categories: videos
  1152. piped_filter: videos
  1153. timeout: 3.0
  1154. # URL to use as link and for embeds
  1155. frontend_url: https://srv.piped.video
  1156. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1157. backend_url:
  1158. - https://pipedapi.kavin.rocks
  1159. - https://pipedapi-libre.kavin.rocks
  1160. - https://pipedapi.adminforge.de
  1161. - name: piped.music
  1162. engine: piped
  1163. network: piped
  1164. shortcut: ppdm
  1165. categories: music
  1166. piped_filter: music_songs
  1167. timeout: 3.0
  1168. - name: piratebay
  1169. engine: piratebay
  1170. shortcut: tpb
  1171. # You may need to change this URL to a proxy if piratebay is blocked in your
  1172. # country
  1173. url: https://thepiratebay.org/
  1174. timeout: 3.0
  1175. - name: podcastindex
  1176. engine: podcastindex
  1177. shortcut: podcast
  1178. # Required dependency: psychopg2
  1179. # - name: postgresql
  1180. # engine: postgresql
  1181. # database: postgres
  1182. # username: postgres
  1183. # password: postgres
  1184. # limit: 10
  1185. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1186. # shortcut : psql
  1187. - name: presearch
  1188. engine: presearch
  1189. search_type: search
  1190. categories: [general, web]
  1191. shortcut: ps
  1192. disabled: true
  1193. - name: presearch images
  1194. engine: presearch
  1195. search_type: images
  1196. categories: [images, web]
  1197. timeout: 4.0
  1198. shortcut: psimg
  1199. disabled: true
  1200. - name: presearch videos
  1201. engine: presearch
  1202. search_type: videos
  1203. categories: [general, web]
  1204. timeout: 4.0
  1205. shortcut: psvid
  1206. disabled: true
  1207. - name: presearch news
  1208. engine: presearch
  1209. search_type: news
  1210. categories: [news, web]
  1211. timeout: 4.0
  1212. shortcut: psnews
  1213. disabled: true
  1214. - name: pub.dev
  1215. engine: xpath
  1216. shortcut: pd
  1217. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1218. paging: true
  1219. results_xpath: //div[contains(@class,"packages-item")]
  1220. url_xpath: ./div/h3/a/@href
  1221. title_xpath: ./div/h3/a
  1222. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1223. categories: [packages, it]
  1224. timeout: 3.0
  1225. disabled: true
  1226. first_page_num: 1
  1227. about:
  1228. website: https://pub.dev/
  1229. official_api_documentation: https://pub.dev/help/api
  1230. use_official_api: false
  1231. require_api_key: false
  1232. results: HTML
  1233. - name: pubmed
  1234. engine: pubmed
  1235. shortcut: pub
  1236. timeout: 3.0
  1237. - name: pypi
  1238. shortcut: pypi
  1239. engine: xpath
  1240. paging: true
  1241. search_url: https://pypi.org/search/?q={query}&page={pageno}
  1242. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1243. url_xpath: ./@href
  1244. title_xpath: ./h3/span[@class="package-snippet__name"]
  1245. content_xpath: ./p
  1246. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1247. first_page_num: 1
  1248. categories: [it, packages]
  1249. about:
  1250. website: https://pypi.org
  1251. wikidata_id: Q2984686
  1252. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1253. use_official_api: false
  1254. require_api_key: false
  1255. results: HTML
  1256. - name: qwant
  1257. qwant_categ: web
  1258. engine: qwant
  1259. shortcut: qw
  1260. categories: [general, web]
  1261. additional_tests:
  1262. rosebud: *test_rosebud
  1263. - name: qwant news
  1264. qwant_categ: news
  1265. engine: qwant
  1266. shortcut: qwn
  1267. categories: news
  1268. network: qwant
  1269. - name: qwant images
  1270. qwant_categ: images
  1271. engine: qwant
  1272. shortcut: qwi
  1273. categories: [images, web]
  1274. network: qwant
  1275. - name: qwant videos
  1276. qwant_categ: videos
  1277. engine: qwant
  1278. shortcut: qwv
  1279. categories: [videos, web]
  1280. network: qwant
  1281. # - name: library
  1282. # engine: recoll
  1283. # shortcut: lib
  1284. # base_url: 'https://recoll.example.org/'
  1285. # search_dir: ''
  1286. # mount_prefix: /export
  1287. # dl_prefix: 'https://download.example.org'
  1288. # timeout: 30.0
  1289. # categories: files
  1290. # disabled: true
  1291. # - name: recoll library reference
  1292. # engine: recoll
  1293. # base_url: 'https://recoll.example.org/'
  1294. # search_dir: reference
  1295. # mount_prefix: /export
  1296. # dl_prefix: 'https://download.example.org'
  1297. # shortcut: libr
  1298. # timeout: 30.0
  1299. # categories: files
  1300. # disabled: true
  1301. - name: radio browser
  1302. engine: radio_browser
  1303. shortcut: rb
  1304. - name: reddit
  1305. engine: reddit
  1306. shortcut: re
  1307. page_size: 25
  1308. - name: rottentomatoes
  1309. engine: rottentomatoes
  1310. shortcut: rt
  1311. disabled: true
  1312. # Required dependency: redis
  1313. # - name: myredis
  1314. # shortcut : rds
  1315. # engine: redis_server
  1316. # exact_match_only: false
  1317. # host: '127.0.0.1'
  1318. # port: 6379
  1319. # enable_http: true
  1320. # password: ''
  1321. # db: 0
  1322. # tmp suspended: bad certificate
  1323. # - name: scanr structures
  1324. # shortcut: scs
  1325. # engine: scanr_structures
  1326. # disabled: true
  1327. - name: sepiasearch
  1328. engine: sepiasearch
  1329. shortcut: sep
  1330. - name: soundcloud
  1331. engine: soundcloud
  1332. shortcut: sc
  1333. - name: stackoverflow
  1334. engine: stackexchange
  1335. shortcut: st
  1336. api_site: 'stackoverflow'
  1337. categories: [it, q&a]
  1338. - name: askubuntu
  1339. engine: stackexchange
  1340. shortcut: ubuntu
  1341. api_site: 'askubuntu'
  1342. categories: [it, q&a]
  1343. - name: internetarchivescholar
  1344. engine: internet_archive_scholar
  1345. shortcut: ias
  1346. timeout: 5.0
  1347. - name: superuser
  1348. engine: stackexchange
  1349. shortcut: su
  1350. api_site: 'superuser'
  1351. categories: [it, q&a]
  1352. - name: searchcode code
  1353. engine: searchcode_code
  1354. shortcut: scc
  1355. disabled: true
  1356. - name: framalibre
  1357. engine: framalibre
  1358. shortcut: frl
  1359. disabled: true
  1360. # - name: searx
  1361. # engine: searx_engine
  1362. # shortcut: se
  1363. # instance_urls :
  1364. # - http://127.0.0.1:8888/
  1365. # - ...
  1366. # disabled: true
  1367. - name: semantic scholar
  1368. engine: semantic_scholar
  1369. disabled: true
  1370. shortcut: se
  1371. # Spotify needs API credentials
  1372. # - name: spotify
  1373. # engine: spotify
  1374. # shortcut: stf
  1375. # api_client_id: *******
  1376. # api_client_secret: *******
  1377. # - name: solr
  1378. # engine: solr
  1379. # shortcut: slr
  1380. # base_url: http://localhost:8983
  1381. # collection: collection_name
  1382. # sort: '' # sorting: asc or desc
  1383. # field_list: '' # comma separated list of field names to display on the UI
  1384. # default_fields: '' # default field to query
  1385. # query_fields: '' # query fields
  1386. # enable_http: true
  1387. # - name: springer nature
  1388. # engine: springer
  1389. # # get your API key from: https://dev.springernature.com/signup
  1390. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1391. # api_key: 'unset'
  1392. # shortcut: springer
  1393. # timeout: 15.0
  1394. - name: startpage
  1395. engine: startpage
  1396. shortcut: sp
  1397. timeout: 6.0
  1398. disabled: true
  1399. additional_tests:
  1400. rosebud: *test_rosebud
  1401. - name: tokyotoshokan
  1402. engine: tokyotoshokan
  1403. shortcut: tt
  1404. timeout: 6.0
  1405. disabled: true
  1406. - name: solidtorrents
  1407. engine: solidtorrents
  1408. shortcut: solid
  1409. timeout: 4.0
  1410. base_url:
  1411. - https://solidtorrents.to
  1412. - https://bitsearch.to
  1413. # For this demo of the sqlite engine download:
  1414. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1415. # and unpack into searx/data/filmliste-v2.db
  1416. # Query to test: "!demo concert"
  1417. #
  1418. # - name: demo
  1419. # engine: sqlite
  1420. # shortcut: demo
  1421. # categories: general
  1422. # result_template: default.html
  1423. # database: searx/data/filmliste-v2.db
  1424. # query_str: >-
  1425. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1426. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1427. # description AS content
  1428. # FROM film
  1429. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1430. # ORDER BY duration DESC
  1431. - name: tagesschau
  1432. engine: tagesschau
  1433. # when set to false, display URLs from Tagesschau, and not the actual source
  1434. # (e.g. NDR, WDR, SWR, HR, ...)
  1435. use_source_url: true
  1436. shortcut: ts
  1437. disabled: true
  1438. - name: tmdb
  1439. engine: xpath
  1440. paging: true
  1441. categories: movies
  1442. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1443. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1444. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1445. thumbnail_xpath: .//img/@src
  1446. title_xpath: .//div[contains(@class,"title")]//h2
  1447. content_xpath: .//div[contains(@class,"overview")]
  1448. shortcut: tm
  1449. disabled: true
  1450. # Requires Tor
  1451. - name: torch
  1452. engine: xpath
  1453. paging: true
  1454. search_url:
  1455. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1456. results_xpath: //table//tr
  1457. url_xpath: ./td[2]/a
  1458. title_xpath: ./td[2]/b
  1459. content_xpath: ./td[2]/small
  1460. categories: onions
  1461. enable_http: true
  1462. shortcut: tch
  1463. # torznab engine lets you query any torznab compatible indexer. Using this
  1464. # engine in combination with Jackett opens the possibility to query a lot of
  1465. # public and private indexers directly from SearXNG. More details at:
  1466. # https://docs.searxng.org/dev/engines/online/torznab.html
  1467. #
  1468. # - name: Torznab EZTV
  1469. # engine: torznab
  1470. # shortcut: eztv
  1471. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1472. # enable_http: true # if using localhost
  1473. # api_key: xxxxxxxxxxxxxxx
  1474. # show_magnet_links: true
  1475. # show_torrent_files: false
  1476. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1477. # torznab_categories: # optional
  1478. # - 2000
  1479. # - 5000
  1480. # tmp suspended - too slow, too many errors
  1481. # - name: urbandictionary
  1482. # engine : xpath
  1483. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1484. # url_xpath : //*[@class="word"]/@href
  1485. # title_xpath : //*[@class="def-header"]
  1486. # content_xpath: //*[@class="meaning"]
  1487. # shortcut: ud
  1488. - name: unsplash
  1489. engine: unsplash
  1490. shortcut: us
  1491. - name: yahoo
  1492. engine: yahoo
  1493. shortcut: yh
  1494. disabled: true
  1495. - name: yahoo news
  1496. engine: yahoo_news
  1497. shortcut: yhn
  1498. - name: youtube
  1499. shortcut: yt
  1500. # You can use the engine using the official stable API, but you need an API
  1501. # key See: https://console.developers.google.com/project
  1502. #
  1503. # engine: youtube_api
  1504. # api_key: 'apikey' # required!
  1505. #
  1506. # Or you can use the html non-stable engine, activated by default
  1507. engine: youtube_noapi
  1508. - name: dailymotion
  1509. engine: dailymotion
  1510. shortcut: dm
  1511. - name: vimeo
  1512. engine: vimeo
  1513. shortcut: vm
  1514. - name: wiby
  1515. engine: json_engine
  1516. paging: true
  1517. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1518. url_query: URL
  1519. title_query: Title
  1520. content_query: Snippet
  1521. categories: [general, web]
  1522. shortcut: wib
  1523. disabled: true
  1524. about:
  1525. website: https://wiby.me/
  1526. - name: alexandria
  1527. engine: json_engine
  1528. shortcut: alx
  1529. categories: general
  1530. paging: true
  1531. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1532. results_query: results
  1533. title_query: title
  1534. url_query: url
  1535. content_query: snippet
  1536. timeout: 1.5
  1537. disabled: true
  1538. about:
  1539. website: https://alexandria.org/
  1540. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1541. use_official_api: true
  1542. require_api_key: false
  1543. results: JSON
  1544. - name: wikibooks
  1545. engine: mediawiki
  1546. weight: 0.5
  1547. shortcut: wb
  1548. categories: [general, wikimedia]
  1549. base_url: "https://{language}.wikibooks.org/"
  1550. search_type: text
  1551. disabled: true
  1552. about:
  1553. website: https://www.wikibooks.org/
  1554. wikidata_id: Q367
  1555. - name: wikinews
  1556. engine: mediawiki
  1557. shortcut: wn
  1558. categories: [news, wikimedia]
  1559. base_url: "https://{language}.wikinews.org/"
  1560. search_type: text
  1561. srsort: create_timestamp_desc
  1562. about:
  1563. website: https://www.wikinews.org/
  1564. wikidata_id: Q964
  1565. - name: wikiquote
  1566. engine: mediawiki
  1567. weight: 0.5
  1568. shortcut: wq
  1569. categories: [general, wikimedia]
  1570. base_url: "https://{language}.wikiquote.org/"
  1571. search_type: text
  1572. disabled: true
  1573. additional_tests:
  1574. rosebud: *test_rosebud
  1575. about:
  1576. website: https://www.wikiquote.org/
  1577. wikidata_id: Q369
  1578. - name: wikisource
  1579. engine: mediawiki
  1580. weight: 0.5
  1581. shortcut: ws
  1582. categories: [general, wikimedia]
  1583. base_url: "https://{language}.wikisource.org/"
  1584. search_type: text
  1585. disabled: true
  1586. about:
  1587. website: https://www.wikisource.org/
  1588. wikidata_id: Q263
  1589. - name: wikispecies
  1590. engine: mediawiki
  1591. shortcut: wsp
  1592. categories: [general, science, wikimedia]
  1593. base_url: "https://species.wikimedia.org/"
  1594. search_type: text
  1595. disabled: true
  1596. about:
  1597. website: https://species.wikimedia.org/
  1598. wikidata_id: Q13679
  1599. - name: wiktionary
  1600. engine: mediawiki
  1601. shortcut: wt
  1602. categories: [dictionaries, wikimedia]
  1603. base_url: "https://{language}.wiktionary.org/"
  1604. search_type: text
  1605. about:
  1606. website: https://www.wiktionary.org/
  1607. wikidata_id: Q151
  1608. - name: wikiversity
  1609. engine: mediawiki
  1610. weight: 0.5
  1611. shortcut: wv
  1612. categories: [general, wikimedia]
  1613. base_url: "https://{language}.wikiversity.org/"
  1614. search_type: text
  1615. disabled: true
  1616. about:
  1617. website: https://www.wikiversity.org/
  1618. wikidata_id: Q370
  1619. - name: wikivoyage
  1620. engine: mediawiki
  1621. weight: 0.5
  1622. shortcut: wy
  1623. categories: [general, wikimedia]
  1624. base_url: "https://{language}.wikivoyage.org/"
  1625. search_type: text
  1626. disabled: true
  1627. about:
  1628. website: https://www.wikivoyage.org/
  1629. wikidata_id: Q373
  1630. - name: wikicommons.images
  1631. engine: wikicommons
  1632. shortcut: wc
  1633. categories: images
  1634. number_of_results: 10
  1635. - name: wolframalpha
  1636. shortcut: wa
  1637. # You can use the engine using the official stable API, but you need an API
  1638. # key. See: https://products.wolframalpha.com/api/
  1639. #
  1640. # engine: wolframalpha_api
  1641. # api_key: ''
  1642. #
  1643. # Or you can use the html non-stable engine, activated by default
  1644. engine: wolframalpha_noapi
  1645. timeout: 6.0
  1646. categories: general
  1647. disabled: true
  1648. - name: dictzone
  1649. engine: dictzone
  1650. shortcut: dc
  1651. - name: mymemory translated
  1652. engine: translated
  1653. shortcut: tl
  1654. timeout: 5.0
  1655. # You can use without an API key, but you are limited to 1000 words/day
  1656. # See: https://mymemory.translated.net/doc/usagelimits.php
  1657. # api_key: ''
  1658. # Required dependency: mysql-connector-python
  1659. # - name: mysql
  1660. # engine: mysql_server
  1661. # database: mydatabase
  1662. # username: user
  1663. # password: pass
  1664. # limit: 10
  1665. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1666. # shortcut: mysql
  1667. - name: 1337x
  1668. engine: 1337x
  1669. shortcut: 1337x
  1670. disabled: true
  1671. - name: duden
  1672. engine: duden
  1673. shortcut: du
  1674. disabled: true
  1675. - name: seznam
  1676. shortcut: szn
  1677. engine: seznam
  1678. disabled: true
  1679. # - name: deepl
  1680. # engine: deepl
  1681. # shortcut: dpl
  1682. # # You can use the engine using the official stable API, but you need an API key
  1683. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1684. # api_key: '' # required!
  1685. # timeout: 5.0
  1686. # disabled: true
  1687. - name: mojeek
  1688. shortcut: mjk
  1689. engine: xpath
  1690. paging: true
  1691. categories: [general, web]
  1692. search_url: https://www.mojeek.com/search?q={query}&s={pageno}&lang={lang}&lb={lang}
  1693. results_xpath: //ul[@class="results-standard"]/li/a[@class="ob"]
  1694. url_xpath: ./@href
  1695. title_xpath: ../h2/a
  1696. content_xpath: ..//p[@class="s"]
  1697. suggestion_xpath: //div[@class="top-info"]/p[@class="top-info spell"]/em/a
  1698. first_page_num: 0
  1699. page_size: 10
  1700. max_page: 100
  1701. disabled: true
  1702. about:
  1703. website: https://www.mojeek.com/
  1704. wikidata_id: Q60747299
  1705. official_api_documentation: https://www.mojeek.com/services/api.html/
  1706. use_official_api: false
  1707. require_api_key: false
  1708. results: HTML
  1709. - name: moviepilot
  1710. engine: moviepilot
  1711. shortcut: mp
  1712. disabled: true
  1713. - name: naver
  1714. shortcut: nvr
  1715. categories: [general, web]
  1716. engine: xpath
  1717. paging: true
  1718. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1719. url_xpath: //a[@class="link_tit"]/@href
  1720. title_xpath: //a[@class="link_tit"]
  1721. content_xpath: //a[@class="total_dsc"]/div
  1722. first_page_num: 1
  1723. page_size: 10
  1724. disabled: true
  1725. about:
  1726. website: https://www.naver.com/
  1727. wikidata_id: Q485639
  1728. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1729. use_official_api: false
  1730. require_api_key: false
  1731. results: HTML
  1732. language: ko
  1733. - name: rubygems
  1734. shortcut: rbg
  1735. engine: xpath
  1736. paging: true
  1737. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1738. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1739. url_xpath: ./@href
  1740. title_xpath: ./span/h2
  1741. content_xpath: ./span/p
  1742. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1743. first_page_num: 1
  1744. categories: [it, packages]
  1745. disabled: true
  1746. about:
  1747. website: https://rubygems.org/
  1748. wikidata_id: Q1853420
  1749. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1750. use_official_api: false
  1751. require_api_key: false
  1752. results: HTML
  1753. - name: peertube
  1754. engine: peertube
  1755. shortcut: ptb
  1756. paging: true
  1757. # alternatives see: https://instances.joinpeertube.org/instances
  1758. # base_url: https://tube.4aem.com
  1759. categories: videos
  1760. disabled: true
  1761. timeout: 6.0
  1762. - name: mediathekviewweb
  1763. engine: mediathekviewweb
  1764. shortcut: mvw
  1765. disabled: true
  1766. - name: yacy
  1767. engine: yacy
  1768. categories: general
  1769. search_type: text
  1770. base_url: https://yacy.searchlab.eu
  1771. shortcut: ya
  1772. disabled: true
  1773. # required if you aren't using HTTPS for your local yacy instance
  1774. # https://docs.searxng.org/dev/engines/online/yacy.html
  1775. # enable_http: true
  1776. # timeout: 3.0
  1777. # search_mode: 'global'
  1778. - name: yacy images
  1779. engine: yacy
  1780. categories: images
  1781. search_type: image
  1782. base_url: https://yacy.searchlab.eu
  1783. shortcut: yai
  1784. disabled: true
  1785. - name: rumble
  1786. engine: rumble
  1787. shortcut: ru
  1788. base_url: https://rumble.com/
  1789. paging: true
  1790. categories: videos
  1791. disabled: true
  1792. - name: wordnik
  1793. engine: wordnik
  1794. shortcut: def
  1795. base_url: https://www.wordnik.com/
  1796. categories: [dictionaries]
  1797. timeout: 5.0
  1798. - name: woxikon.de synonyme
  1799. engine: xpath
  1800. shortcut: woxi
  1801. categories: [dictionaries]
  1802. timeout: 5.0
  1803. disabled: true
  1804. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1805. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1806. content_xpath: //div[@class="synonyms-list-group"]
  1807. title_xpath: //div[@class="upper-synonyms"]/a
  1808. no_result_for_http_status: [404]
  1809. about:
  1810. website: https://www.woxikon.de/
  1811. wikidata_id: # No Wikidata ID
  1812. use_official_api: false
  1813. require_api_key: false
  1814. results: HTML
  1815. language: de
  1816. - name: seekr news
  1817. engine: seekr
  1818. shortcut: senews
  1819. categories: news
  1820. seekr_category: news
  1821. disabled: true
  1822. - name: seekr images
  1823. engine: seekr
  1824. network: seekr news
  1825. shortcut: seimg
  1826. categories: images
  1827. seekr_category: images
  1828. disabled: true
  1829. - name: seekr videos
  1830. engine: seekr
  1831. network: seekr news
  1832. shortcut: sevid
  1833. categories: videos
  1834. seekr_category: videos
  1835. disabled: true
  1836. - name: sjp.pwn
  1837. engine: sjp
  1838. shortcut: sjp
  1839. base_url: https://sjp.pwn.pl/
  1840. timeout: 5.0
  1841. disabled: true
  1842. - name: svgrepo
  1843. engine: svgrepo
  1844. shortcut: svg
  1845. timeout: 10.0
  1846. disabled: true
  1847. - name: tootfinder
  1848. engine: tootfinder
  1849. shortcut: toot
  1850. - name: wallhaven
  1851. engine: wallhaven
  1852. # api_key: abcdefghijklmnopqrstuvwxyz
  1853. shortcut: wh
  1854. # wikimini: online encyclopedia for children
  1855. # The fulltext and title parameter is necessary for Wikimini because
  1856. # sometimes it will not show the results and redirect instead
  1857. - name: wikimini
  1858. engine: xpath
  1859. shortcut: wkmn
  1860. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1861. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1862. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1863. content_xpath: //li/div[@class="searchresult"]
  1864. categories: general
  1865. disabled: true
  1866. about:
  1867. website: https://wikimini.org/
  1868. wikidata_id: Q3568032
  1869. use_official_api: false
  1870. require_api_key: false
  1871. results: HTML
  1872. language: fr
  1873. - name: wttr.in
  1874. engine: wttr
  1875. shortcut: wttr
  1876. timeout: 9.0
  1877. - name: yummly
  1878. engine: yummly
  1879. shortcut: yum
  1880. disabled: true
  1881. - name: brave
  1882. engine: brave
  1883. shortcut: br
  1884. time_range_support: true
  1885. paging: true
  1886. categories: [general, web]
  1887. brave_category: search
  1888. # brave_spellcheck: true
  1889. - name: brave.images
  1890. engine: brave
  1891. network: brave
  1892. shortcut: brimg
  1893. categories: [images, web]
  1894. brave_category: images
  1895. - name: brave.videos
  1896. engine: brave
  1897. network: brave
  1898. shortcut: brvid
  1899. categories: [videos, web]
  1900. brave_category: videos
  1901. - name: brave.news
  1902. engine: brave
  1903. network: brave
  1904. shortcut: brnews
  1905. categories: news
  1906. brave_category: news
  1907. - name: lib.rs
  1908. shortcut: lrs
  1909. engine: xpath
  1910. search_url: https://lib.rs/search?q={query}
  1911. results_xpath: /html/body/main/div/ol/li/a
  1912. url_xpath: ./@href
  1913. title_xpath: ./div[@class="h"]/h4
  1914. content_xpath: ./div[@class="h"]/p
  1915. categories: [it, packages]
  1916. disabled: true
  1917. about:
  1918. website: https://lib.rs
  1919. wikidata_id: Q113486010
  1920. use_official_api: false
  1921. require_api_key: false
  1922. results: HTML
  1923. - name: sourcehut
  1924. shortcut: srht
  1925. engine: xpath
  1926. paging: true
  1927. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1928. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1929. url_xpath: ./h4/a[2]/@href
  1930. title_xpath: ./h4/a[2]
  1931. content_xpath: ./p
  1932. first_page_num: 1
  1933. categories: [it, repos]
  1934. disabled: true
  1935. about:
  1936. website: https://sr.ht
  1937. wikidata_id: Q78514485
  1938. official_api_documentation: https://man.sr.ht/
  1939. use_official_api: false
  1940. require_api_key: false
  1941. results: HTML
  1942. - name: goo
  1943. shortcut: goo
  1944. engine: xpath
  1945. paging: true
  1946. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  1947. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  1948. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  1949. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  1950. first_page_num: 0
  1951. categories: [general, web]
  1952. disabled: true
  1953. timeout: 4.0
  1954. about:
  1955. website: https://search.goo.ne.jp
  1956. wikidata_id: Q249044
  1957. use_official_api: false
  1958. require_api_key: false
  1959. results: HTML
  1960. language: ja
  1961. - name: bt4g
  1962. engine: bt4g
  1963. shortcut: bt4g
  1964. - name: pkg.go.dev
  1965. engine: xpath
  1966. shortcut: pgo
  1967. search_url: https://pkg.go.dev/search?limit=100&m=package&q={query}
  1968. results_xpath: /html/body/main/div[contains(@class,"SearchResults")]/div[not(@class)]/div[@class="SearchSnippet"]
  1969. url_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a/@href
  1970. title_xpath: ./div[@class="SearchSnippet-headerContainer"]/h2/a
  1971. content_xpath: ./p[@class="SearchSnippet-synopsis"]
  1972. categories: [packages, it]
  1973. timeout: 3.0
  1974. disabled: true
  1975. about:
  1976. website: https://pkg.go.dev/
  1977. use_official_api: false
  1978. require_api_key: false
  1979. results: HTML
  1980. # Doku engine lets you access to any Doku wiki instance:
  1981. # A public one or a privete/corporate one.
  1982. # - name: ubuntuwiki
  1983. # engine: doku
  1984. # shortcut: uw
  1985. # base_url: 'https://doc.ubuntu-fr.org'
  1986. # Be careful when enabling this engine if you are
  1987. # running a public instance. Do not expose any sensitive
  1988. # information. You can restrict access by configuring a list
  1989. # of access tokens under tokens.
  1990. # - name: git grep
  1991. # engine: command
  1992. # command: ['git', 'grep', '{{QUERY}}']
  1993. # shortcut: gg
  1994. # tokens: []
  1995. # disabled: true
  1996. # delimiter:
  1997. # chars: ':'
  1998. # keys: ['filepath', 'code']
  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: locate
  2004. # engine: command
  2005. # command: ['locate', '{{QUERY}}']
  2006. # shortcut: loc
  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: find
  2017. # engine: command
  2018. # command: ['find', '.', '-name', '{{QUERY}}']
  2019. # query_type: path
  2020. # shortcut: fnd
  2021. # tokens: []
  2022. # disabled: true
  2023. # delimiter:
  2024. # chars: ' '
  2025. # keys: ['line']
  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: pattern search in files
  2031. # engine: command
  2032. # command: ['fgrep', '{{QUERY}}']
  2033. # shortcut: fgr
  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: regex search in files
  2044. # engine: command
  2045. # command: ['grep', '{{QUERY}}']
  2046. # shortcut: gr
  2047. # tokens: []
  2048. # disabled: true
  2049. # delimiter:
  2050. # chars: ' '
  2051. # keys: ['line']
  2052. doi_resolvers:
  2053. oadoi.org: 'https://oadoi.org/'
  2054. doi.org: 'https://doi.org/'
  2055. doai.io: 'https://dissem.in/'
  2056. sci-hub.se: 'https://sci-hub.se/'
  2057. sci-hub.st: 'https://sci-hub.st/'
  2058. sci-hub.ru: 'https://sci-hub.ru/'
  2059. default_doi_resolver: 'oadoi.org'