diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-25 11:29:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-25 11:29:25 +0200 |
| commit | b046322c7b9467a7de6e9e289e1c5b0c0baaf4a6 (patch) | |
| tree | 13174681c3d10bcc86faa417c9fb639e0a98692e /searx/engines/bandcamp.py | |
| parent | 0c3314b33872d68d97d8aede8786a7f56f9831d8 (diff) | |
| parent | 39876d9f144700b223819a0f50101625a1b85e3c (diff) | |
Merge pull request #333 from dalf/enh-engine-descriptions
RFC: /preferences: display engine descriptions
Diffstat (limited to 'searx/engines/bandcamp.py')
| -rw-r--r-- | searx/engines/bandcamp.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/searx/engines/bandcamp.py b/searx/engines/bandcamp.py index dafb3ee16..62745243f 100644 --- a/searx/engines/bandcamp.py +++ b/searx/engines/bandcamp.py @@ -12,6 +12,16 @@ from dateutil.parser import parse as dateparse from lxml import html from searx.utils import extract_text +# about +about = { + "website": 'https://bandcamp.com/', + "wikidata_id": 'Q545966', + "official_api_documentation": 'https://bandcamp.com/developer', + "use_official_api": False, + "require_api_key": False, + "results": 'HTML', +} + categories = ['music'] paging = True |