diff options
author | Alexandre Flament <alex@al-f.net> | 2021-09-04 13:36:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 13:36:09 +0200 |
commit | 39bbd15b39a7d7da49148bbb8079f974045e982d (patch) | |
tree | e8c28793a0d4c075a301d12dbf87ef9259f99033 /searx/settings.yml | |
parent | 3b1acdd5c524b03dd39d722324c968fc9e048da9 (diff) | |
parent | 0648757e7fc6efe9cb08c26c7340f1a476492a93 (diff) | |
download | searxng-39bbd15b39a7d7da49148bbb8079f974045e982d.tar.gz searxng-39bbd15b39a7d7da49148bbb8079f974045e982d.zip |
Merge pull request #287 from return42/azlyrics
[enh] add engine AZLyrics.com (XPath)
Diffstat (limited to 'searx/settings.yml')
-rw-r--r-- | searx/settings.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 67046f478..e5eb9dd65 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -798,6 +798,25 @@ engines: require_api_key: false results: HTML + - name: azlyrics + shortcut: lyrics + engine: xpath + timeout: 4.0 + disabled: true + categories: general + paging: true + search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno} + url_xpath: //td[@class="text-left visitedlyr"]/a/@href + title_xpath: //span/b/text() + content_xpath: //td[@class="text-left visitedlyr"]/a/small + about: + website: https://azlyrics.com + wikidata_id: Q66372542 + official_api_documentation: + use_official_api: false + require_api_key: false + results: HTML + # - name: meilisearch # engine: meilisearch # shortcut: mes |