diff options
Diffstat (limited to 'searx/engines/spotify.py')
| -rw-r--r-- | searx/engines/spotify.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/searx/engines/spotify.py b/searx/engines/spotify.py index 0ad8bfe32..6816fe672 100644 --- a/searx/engines/spotify.py +++ b/searx/engines/spotify.py @@ -5,9 +5,10 @@ from json import loads from urllib.parse import urlencode -import requests import base64 +from searx.network import post as http_post + # about about = { "website": 'https://www.spotify.com', @@ -38,7 +39,7 @@ def request(query, params): params['url'] = search_url.format(query=urlencode({'q': query}), offset=offset) - r = requests.post( + r = http_post( 'https://accounts.spotify.com/api/token', data={'grant_type': 'client_credentials'}, headers={'Authorization': 'Basic ' + base64.b64encode( |