We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker-Hub API v1 ..
searxng/searx/engines/docker_hub.py
Line 23 in 19ee529
does no longer work and the linked API docs no longer available
Line 13 in 19ee529
Seems we need a response function like
base_url = "https://hub.docker.com/" search_api = base_url "api/search/v3/catalog/search?" page_size = 10 def request(query, params): args = urlencode( { "query": query, "from": page_size * (params['pageno'] -1), "size": page_size, } ) params['url'] = search_api args params["headers"]["Search-Version"] = "v3" return params
.. the url is https://hub.docker.com/api/search/v3/catalog/search?query=searx&from=0&size=10
but this needs a new implementation of the response function and I don't know if there is a better solution ..
Lines 34 to 35 in 19ee529
The text was updated successfully, but these errors were encountered:
I'm interested into look into this engine, but it'd probably be after the Christmas days then.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Docker-Hub API v1 ..
searxng/searx/engines/docker_hub.py
Line 23 in 19ee529
does no longer work and the linked API docs no longer available
searxng/searx/engines/docker_hub.py
Line 13 in 19ee529
Seems we need a response function like
.. the url is https://hub.docker.com/api/search/v3/catalog/search?query=searx&from=0&size=10
but this needs a new implementation of the response function and I don't know if there is a better solution ..
searxng/searx/engines/docker_hub.py
Lines 34 to 35 in 19ee529
The text was updated successfully, but these errors were encountered: